소스 검색

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);