mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-21 09:52:06 +03:00
1ad7a91f4d
refs #6301 - In the migration folder, commands.js changed to builder.js to resolve conflict with the 'commands' inside data/utils/clients/. - a new data/schema/ folder has been added to hold all the code related to the database schema - data/utils/clients have been moved to data/schema/clients - data/utils/index.js has become data/schema/commands.js - data/schema.js has been split, the definition of the DB schema stays put, the additional checks have moved to data/schema/checks.js - data/validation/index.js has become data/schema/versioning.js - data/fixtures has moved to data/migration/fixtures - data/default-settings.json has moved to data/schema/default-settings.json
57 lines
1.8 KiB
JavaScript
57 lines
1.8 KiB
JavaScript
var _ = require('lodash'),
|
|
config = require('../../../config/index'),
|
|
|
|
// private
|
|
doRawAndFlatten,
|
|
|
|
// public
|
|
getTables,
|
|
getIndexes,
|
|
getColumns,
|
|
checkPostTable;
|
|
|
|
doRawAndFlatten = function doRaw(query, flattenFn) {
|
|
return config.database.knex.raw(query).then(function (response) {
|
|
return _.flatten(flattenFn(response));
|
|
});
|
|
};
|
|
|
|
getTables = function getTables() {
|
|
return doRawAndFlatten('show tables', function (response) {
|
|
return _.map(response[0], function (entry) { return _.values(entry); });
|
|
});
|
|
};
|
|
|
|
getIndexes = function getIndexes(table) {
|
|
return doRawAndFlatten('SHOW INDEXES from ' + table, function (response) {
|
|
return _.pluck(response[0], 'Key_name');
|
|
});
|
|
};
|
|
|
|
getColumns = function getColumns(table) {
|
|
return doRawAndFlatten('SHOW COLUMNS FROM ' + table, function (response) {
|
|
return _.pluck(response[0], 'Field');
|
|
});
|
|
};
|
|
|
|
// This function changes the type of posts.html and posts.markdown columns to mediumtext. Due to
|
|
// a wrong datatype in schema.js some installations using mysql could have been created using the
|
|
// data type text instead of mediumtext.
|
|
// For details see: https://github.com/TryGhost/Ghost/issues/1947
|
|
checkPostTable = function checkPostTable() {
|
|
return config.database.knex.raw('SHOW FIELDS FROM posts where Field ="html" OR Field = "markdown"').then(function (response) {
|
|
return _.flatten(_.map(response[0], function (entry) {
|
|
if (entry.Type.toLowerCase() !== 'mediumtext') {
|
|
return config.database.knex.raw('ALTER TABLE posts MODIFY ' + entry.Field + ' MEDIUMTEXT');
|
|
}
|
|
}));
|
|
});
|
|
};
|
|
|
|
module.exports = {
|
|
checkPostTable: checkPostTable,
|
|
getTables: getTables,
|
|
getIndexes: getIndexes,
|
|
getColumns: getColumns
|
|
};
|