mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-01-04 17:04:59 +03:00
a1ad9f2870
- use async/await and fat arrow syntax - makes it easier to refactor later as "this" context is then reliable
30 lines
985 B
JavaScript
30 lines
985 B
JavaScript
const Promise = require('bluebird');
|
|
const commands = require('../../schema').commands;
|
|
const schema = require('../../schema').tables;
|
|
const logging = require('@tryghost/logging');
|
|
const schemaTables = Object.keys(schema);
|
|
|
|
module.exports.up = async (options) => {
|
|
const connection = options.connection;
|
|
|
|
await Promise.mapSeries(schemaTables, async (table) => {
|
|
logging.info('Creating table: ' + table);
|
|
await commands.createTable(table, connection);
|
|
});
|
|
};
|
|
|
|
/**
|
|
@TODO: This works, but is very dangerous in the current state of the knex-migrator v3.
|
|
@TODO: Decide if we should enable or delete this
|
|
module.exports.down = async (options) => {
|
|
var connection = options.connection;
|
|
|
|
// Reference between tables!
|
|
schemaTables.reverse();
|
|
await Promise.mapSeries(schemaTables, async (table) => {
|
|
logging.info('Drop table: ' + table);
|
|
await commands.deleteTable(table, connection);
|
|
});
|
|
};
|
|
*/
|