]> source.dussan.org Git - iciql.git/commitdiff
Important fix to _iq_versions create mechanism to work with H2 1.3.158+ v0.6.1
authorJames Moger <james.moger@gmail.com>
Fri, 5 Aug 2011 20:40:48 +0000 (16:40 -0400)
committerJames Moger <james.moger@gmail.com>
Fri, 5 Aug 2011 20:40:48 +0000 (16:40 -0400)
src/com/iciql/Constants.java
src/com/iciql/DbVersion.java

index f5280e166621485acc10977a5955af5030e030f2..63bfeff8ee0284a225746403025de8ea925f6e8e 100644 (file)
@@ -25,7 +25,7 @@ public class Constants {
 \r
        // The build script extracts this exact line so be careful editing it\r
        // and only use A-Z a-z 0-9 .-_ in the string.\r
-       public static final String VERSION = "0.6.0";\r
+       public static final String VERSION = "0.6.1";\r
 \r
        // The build script extracts this exact line so be careful editing it\r
        // and only use A-Z a-z 0-9 .-_ in the string.\r
index 50d24a70332131bc4b100e547d088c72fbf6702d..ff72ec0cbc847425ad51a91408fe970a792fba98 100644 (file)
@@ -26,10 +26,10 @@ import com.iciql.Iciql.IQTable;
 @IQTable(name = "_iq_versions", primaryKey = "schemaName tableName", memoryTable = true)
 public class DbVersion {
 
-       @IQColumn(name = "schemaName", allowNull = false)
+       @IQColumn(name = "schemaName", length = 255, allowNull = false)
        String schema = "";
 
-       @IQColumn(name = "tableName", allowNull = false)
+       @IQColumn(name = "tableName", length = 255, allowNull = false)
        String table = "";
 
        @IQColumn(name = "version")