mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-01-06 22:40:14 -05:00
89ef60fdba
refs #7489 Most important change is the naming of the knex-migrator config file.
8 lines
285 B
JavaScript
8 lines
285 B
JavaScript
var config = require('./core/server/config'),
|
|
versioning = require('./core/server/data/schema/versioning');
|
|
|
|
module.exports = {
|
|
currentVersion: versioning.getNewestDatabaseVersion(),
|
|
database: config.get('database'),
|
|
migrationPath: config.get('paths:migrationPath')
|
|
};
|