From b09d9bb3575ca59815e5b7f476705bf4e49eac48 Mon Sep 17 00:00:00 2001 From: James Moger Date: Fri, 5 Aug 2011 16:40:48 -0400 Subject: [PATCH] Important fix to _iq_versions create mechanism to work with H2 1.3.158+ --- src/com/iciql/Constants.java | 2 +- src/com/iciql/DbVersion.java | 4 ++-- 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") -- 2.39.5