public void update(final UpdateUI ui) throws OrmException {
final ReviewDb db = schema.open();
try {
final SchemaVersion u = updater.get();
final CurrentSchemaVersion version = getSchemaVersion(db);
if (version == null) {
try {
creator.create(db);
} catch (IOException e) {
throw new OrmException("Cannot initialize schema", e);