0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-02-17 23:44:39 -05:00
ghost/core/server/data/migrations/utils/index.js
Daniel Lockyer bf28721844 De-duped MIGRATION_USER constant across migration utils
- we shouldn't declare this in more than one place, even if it is a
  weird concept anyway
2022-05-10 13:05:47 +01:00

10 lines
253 B
JavaScript

module.exports = {
...require('./migrations'),
...require('./permissions'),
...require('./schema'),
...require('./settings'),
...require('./tables'),
meta: {
MIGRATION_USER: require('./constants').MIGRATION_USER
}
};