aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJames Moger <james.moger@gmail.com>2011-08-05 16:40:48 -0400
committerJames Moger <james.moger@gmail.com>2011-08-05 16:40:48 -0400
commitb09d9bb3575ca59815e5b7f476705bf4e49eac48 (patch)
tree6415a23ede6ef8e20094068cec4095613a6b78fd
parent757758331fafd53f96881a01ab61931835d3f67d (diff)
downloadiciql-b09d9bb3575ca59815e5b7f476705bf4e49eac48.tar.gz
iciql-b09d9bb3575ca59815e5b7f476705bf4e49eac48.zip
Important fix to _iq_versions create mechanism to work with H2 1.3.158+v0.6.1
-rw-r--r--src/com/iciql/Constants.java2
-rw-r--r--src/com/iciql/DbVersion.java4
2 files changed, 3 insertions, 3 deletions
diff --git a/src/com/iciql/Constants.java b/src/com/iciql/Constants.java
index f5280e1..63bfeff 100644
--- a/src/com/iciql/Constants.java
+++ b/src/com/iciql/Constants.java
@@ -25,7 +25,7 @@ public class Constants {
// The build script extracts this exact line so be careful editing it
// and only use A-Z a-z 0-9 .-_ in the string.
- public static final String VERSION = "0.6.0";
+ public static final String VERSION = "0.6.1";
// The build script extracts this exact line so be careful editing it
// and only use A-Z a-z 0-9 .-_ in the string.
diff --git a/src/com/iciql/DbVersion.java b/src/com/iciql/DbVersion.java
index 50d24a7..ff72ec0 100644
--- a/src/com/iciql/DbVersion.java
+++ b/src/com/iciql/DbVersion.java
@@ -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")