You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
693 B
17 lines
693 B
Index: kexi/migration/mysql/mysqlmigrate.cpp
|
|
===================================================================
|
|
--- kexi/migration/mysql/mysqlmigrate.cpp (revision 714726)
|
|
+++ kexi/migration/mysql/mysqlmigrate.cpp (working copy)
|
|
@@ -420,9 +420,9 @@
|
|
if(mysqlType.contains("blob", false) != 0) {
|
|
// Doesn't matter how big it is, it's binary
|
|
kexiType = KexiDB::Field::BLOB;
|
|
- } else if(mysqlType.contains("text", false) != 0) {
|
|
+/* } else if(mysqlType.contains("text", false) != 0) {
|
|
// All the TEXT types are too big for Kexi text.
|
|
- kexiType = KexiDB::Field::BLOB;
|
|
+ kexiType = KexiDB::Field::BLOB;*/
|
|
} else if(fld->length < 200) {
|
|
kexiType = KexiDB::Field::Text;
|
|
} else {
|