浏览代码

added DData support

Nicolas Cannasse 13 年之前
父节点
当前提交
82c92c62f7
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      std/sys/db/TableCreate.hx

+ 1 - 1
std/sys/db/TableCreate.hx

@@ -55,7 +55,7 @@ class TableCreate {
 		case DSmallText: "TEXT";
 		case DText, DSerialized: "MEDIUMTEXT";
 		case DSmallBinary: "BLOB";
-		case DBinary, DNekoSerialized: "MEDIUMBLOB";
+		case DBinary, DNekoSerialized, DData: "MEDIUMBLOB";
 		case DLongBinary: "LONGBLOB";
 		case DBigInt: "BIGINT";
 		case DBigId: "BIGINT "+autoInc(dbName);