propertyDeltaTable.getAttributeByName("new_value").setLength(20000); // Increase length.
// continuous-db.
final Table historyEntryTable = schemaGenerator.getTable(HistoryEntry.class);
final TableAttribute typeAttr = historyEntryTable.getAttributeByName("type");
typeAttr.setType(TableAttributeType.INT);
schemaGenerator.createSchema();
dao.createMissingIndices();
return UpdateRunningStatus.DONE;
}
};