mirror of
https://github.com/Unleash/unleash.git
synced 2024-12-22 19:07:54 +01:00
d01c9d2dac
This drops usage of finn-eslint rules as they are no longer maintained.
18 lines
412 B
JavaScript
18 lines
412 B
JavaScript
'use strict';
|
|
|
|
require('db-migrate-shared').log.setLogLevel('error');
|
|
|
|
const { getInstance } = require('db-migrate');
|
|
|
|
function migrateDb({ db, databaseSchema = 'public' }) {
|
|
const custom = { ...db, schema: databaseSchema };
|
|
const dbmigrate = getInstance(true, {
|
|
cwd: __dirname,
|
|
config: { custom },
|
|
env: 'custom',
|
|
});
|
|
return dbmigrate.up();
|
|
}
|
|
|
|
module.exports = migrateDb;
|