mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-15 19:52:01 +03:00
6e1bd2838e
closes #6972, #6574 - run each database version as top level transaction - run migrations in correct order
48 lines
1.2 KiB
JavaScript
48 lines
1.2 KiB
JavaScript
var _ = require('lodash'),
|
|
db = require('../../../data/db'),
|
|
|
|
// private
|
|
doRaw,
|
|
|
|
// public
|
|
getTables,
|
|
getIndexes,
|
|
getColumns;
|
|
|
|
doRaw = function doRaw(query, transaction, fn) {
|
|
if (!fn) {
|
|
fn = transaction;
|
|
transaction = null;
|
|
}
|
|
|
|
return (transaction || db.knex).raw(query).then(function (response) {
|
|
return fn(response);
|
|
});
|
|
};
|
|
|
|
getTables = function getTables(transaction) {
|
|
return doRaw('select * from sqlite_master where type = "table"', transaction, function (response) {
|
|
return _.reject(_.map(response, 'tbl_name'), function (name) {
|
|
return name === 'sqlite_sequence';
|
|
});
|
|
});
|
|
};
|
|
|
|
getIndexes = function getIndexes(table, transaction) {
|
|
return doRaw('pragma index_list("' + table + '")', transaction, function (response) {
|
|
return _.flatten(_.map(response, 'name'));
|
|
});
|
|
};
|
|
|
|
getColumns = function getColumns(table, transaction) {
|
|
return doRaw('pragma table_info("' + table + '")', transaction, function (response) {
|
|
return _.flatten(_.map(response, 'name'));
|
|
});
|
|
};
|
|
|
|
module.exports = {
|
|
getTables: getTables,
|
|
getIndexes: getIndexes,
|
|
getColumns: getColumns
|
|
};
|