| 123456789101112131415161718192021222324252627282930 |
- "use strict";
- var _process = _interopRequireDefault(require("process"));
- var _yargs = require("../core/yargs");
- var _migrator = require("../core/migrator");
- var _helpers = _interopRequireDefault(require("../helpers"));
- function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e }; }
- exports.builder = yargs => (0, _yargs._baseOptions)(yargs).option('to', {
- describe: 'Revert to the provided migration',
- default: 0,
- type: 'string'
- }).argv;
- exports.handler = async function (args) {
- // legacy, gulp used to do this
- await _helpers.default.config.init();
- await migrationUndoAll(args);
- _process.default.exit(0);
- };
- function migrationUndoAll(args) {
- return (0, _migrator.getMigrator)('migration', args).then(migrator => {
- return (0, _migrator.ensureCurrentMetaSchema)(migrator).then(() => migrator.executed()).then(migrations => {
- if (migrations.length === 0) {
- _helpers.default.view.log('No executed migrations found.');
- _process.default.exit(0);
- }
- }).then(() => migrator.down({
- to: args.to || 0
- }));
- }).catch(e => _helpers.default.view.error(e));
- }
|