aboutsummaryrefslogtreecommitdiffstats
path: root/src/com
diff options
context:
space:
mode:
Diffstat (limited to 'src/com')
-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")