2
1
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2023-12-13 21:00:40 +01:00
Ghost/MigratorConfig.js
Katharina Irrgang ff7c3a1cf0 🐛 require overrides in MigratorConfig.js (#7938)
no issue

- if using knex-migrator cli not the whole ghost application is required
- that's why we need to ensure the overrides file is loaded
- if not, all dates are in local dates
2017-02-03 15:04:28 +00:00

14 lines
438 B
JavaScript

var config = require('./core/server/config'),
utils = require('./core/server/utils');
/**
* knex-migrator can be used via CLI or within the application
* when using the CLI, we need to ensure that our global overrides are triggered
*/
require('./core/server/overrides');
module.exports = {
currentVersion: utils.ghostVersion.safe,
database: config.get('database'),
migrationPath: config.get('paths:migrationPath')
};