bug50796-mysql增加longtext类型,解决新增标签时该类型被覆盖问题
This commit is contained in:
+2
@@ -39,6 +39,8 @@ public class DbTableMysqlHandleImpl implements DbTableHandleI {
|
|||||||
var3 = "text";
|
var3 = "text";
|
||||||
} else if (dataType.equalsIgnoreCase("blob")) {
|
} else if (dataType.equalsIgnoreCase("blob")) {
|
||||||
var3 = "blob";
|
var3 = "blob";
|
||||||
|
} else if (dataType.equalsIgnoreCase("longtext")) {
|
||||||
|
var3 = "longtext";
|
||||||
}
|
}
|
||||||
|
|
||||||
return var3;
|
return var3;
|
||||||
|
|||||||
Reference in New Issue
Block a user