mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-15 11:34:24 +03:00
b31fec6e2f
No Issue - Fix exception being thrown when updateConfigTheme called before settingsCache fully populated. - Remove unnecessary check in a conditional in the migration command builder.
75 lines
2.4 KiB
JavaScript
75 lines
2.4 KiB
JavaScript
var _ = require('lodash'),
|
|
errors = require('../../errors'),
|
|
utils = require('../utils'),
|
|
schema = require('../schema').tables,
|
|
|
|
// private
|
|
logInfo,
|
|
|
|
// public
|
|
getDeleteCommands,
|
|
getAddCommands,
|
|
addColumnCommands,
|
|
modifyUniqueCommands;
|
|
|
|
logInfo = function logInfo(message) {
|
|
errors.logInfo('Migrations', message);
|
|
};
|
|
|
|
getDeleteCommands = function getDeleteCommands(oldTables, newTables) {
|
|
var deleteTables = _.difference(oldTables, newTables);
|
|
return _.map(deleteTables, function (table) {
|
|
return function () {
|
|
logInfo('Deleting table: ' + table);
|
|
return utils.deleteTable(table);
|
|
};
|
|
});
|
|
};
|
|
getAddCommands = function getAddCommands(oldTables, newTables) {
|
|
var addTables = _.difference(newTables, oldTables);
|
|
return _.map(addTables, function (table) {
|
|
return function () {
|
|
logInfo('Creating table: ' + table);
|
|
return utils.createTable(table);
|
|
};
|
|
});
|
|
};
|
|
addColumnCommands = function addColumnCommands(table, columns) {
|
|
var columnKeys = _.keys(schema[table]),
|
|
addColumns = _.difference(columnKeys, columns);
|
|
|
|
return _.map(addColumns, function (column) {
|
|
return function () {
|
|
logInfo('Adding column: ' + table + '.' + column);
|
|
return utils.addColumn(table, column);
|
|
};
|
|
});
|
|
};
|
|
modifyUniqueCommands = function modifyUniqueCommands(table, indexes) {
|
|
var columnKeys = _.keys(schema[table]);
|
|
return _.map(columnKeys, function (column) {
|
|
if (schema[table][column].unique === true) {
|
|
if (!_.contains(indexes, table + '_' + column + '_unique')) {
|
|
return function () {
|
|
logInfo('Adding unique on: ' + table + '.' + column);
|
|
return utils.addUnique(table, column);
|
|
};
|
|
}
|
|
} else if (!schema[table][column].unique) {
|
|
if (_.contains(indexes, table + '_' + column + '_unique')) {
|
|
return function () {
|
|
logInfo('Dropping unique on: ' + table + '.' + column);
|
|
return utils.dropUnique(table, column);
|
|
};
|
|
}
|
|
}
|
|
});
|
|
};
|
|
|
|
module.exports = {
|
|
getDeleteCommands: getDeleteCommands,
|
|
getAddCommands: getAddCommands,
|
|
addColumnCommands: addColumnCommands,
|
|
modifyUniqueCommands: modifyUniqueCommands
|
|
};
|