create core schema as a first migration

This commit is contained in:
Tomasz Sowa 2022-04-11 20:57:49 +02:00
parent a544ccd1a7
commit c8edd241d5
2 changed files with 13 additions and 0 deletions

View File

@ -103,12 +103,24 @@ bool Migration::do_migration(int & current_table_version)
bool ok = true; bool ok = true;
ok = ok && morm::Model::do_migration(current_table_version, 1, this, &Migration::do_migration_to_1); ok = ok && morm::Model::do_migration(current_table_version, 1, this, &Migration::do_migration_to_1);
ok = ok && morm::Model::do_migration(current_table_version, 2, this, &Migration::do_migration_to_2);
return ok; return ok;
} }
bool Migration::do_migration_to_1() bool Migration::do_migration_to_1()
{
const char * str = R"sql(
create schema core
);
)sql";
return db_query(str);
}
bool Migration::do_migration_to_2()
{ {
// IMPROVEME // IMPROVEME
// what about 'create schema core'? // what about 'create schema core'?

View File

@ -84,6 +84,7 @@ private:
bool do_migration_to_1(); bool do_migration_to_1();
bool do_migration_to_2();
}; };