\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
@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")