mirror of
https://github.com/spacebarchat/server.git
synced 2024-11-06 10:52:31 +01:00
23 lines
472 B
JavaScript
23 lines
472 B
JavaScript
const { DataSourceOptions, DatabaseType, initDatabase } = require("../..");
|
|
const path = require("path");
|
|
|
|
(async () => {
|
|
DataSourceOptions.setOptions({
|
|
logging: true,
|
|
migrations: [
|
|
path.join(
|
|
process.cwd(),
|
|
"scripts",
|
|
"stagingMigration",
|
|
DatabaseType,
|
|
"*.js",
|
|
),
|
|
],
|
|
});
|
|
|
|
const dbConnection = await DataSourceOptions.initialize();
|
|
await dbConnection.runMigrations();
|
|
await dbConnection.destroy();
|
|
console.log("migration done");
|
|
})();
|