Update script location in main
This commit is contained in:
parent
87ad067bbf
commit
83e82c93aa
1 changed files with 2 additions and 2 deletions
|
@ -20,8 +20,8 @@ public class ServerMain {
|
||||||
|
|
||||||
// Here, we can migrate an arbitrary number of SQL scripts.
|
// Here, we can migrate an arbitrary number of SQL scripts.
|
||||||
try {
|
try {
|
||||||
db.migrateScript("Migrations/0010-tables.sql");
|
db.migrateScript("Migrations/create-schema.sql");
|
||||||
db.migrateScript("Migrations/0020-data.sql");
|
db.migrateScript("Migrations/initial-data.sql");
|
||||||
} catch (Exception e) {
|
} catch (Exception e) {
|
||||||
throw new IOError(e);
|
throw new IOError(e);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue