-
Notifications
You must be signed in to change notification settings - Fork 226
/
migrate-down
executable file
·73 lines (63 loc) · 1.98 KB
/
migrate-down
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
#!/usr/bin/env node
// vim: set ft=javascript:
'use strict'
var program = require('commander')
var path = require('path')
var minimatch = require('minimatch')
var dotenv = require('dotenv')
var migrate = require('../')
var runMigrations = require('../lib/migrate')
var log = require('../lib/log')
var registerCompiler = require('../lib/register-compiler')
var pkg = require('../package.json')
program
.version(pkg.version)
.usage('[options] <name>')
.option('-c, --chdir <dir>', 'Change the working directory', process.cwd())
.option('-f, --state-file <path>', 'Set path to state file', '.migrate')
.option('-s, --store <store>', 'Set the migrations store', path.join(__dirname, '..', 'lib', 'file-store'))
.option('--migrations-dir <dir>', 'Change the migrations directory name', 'migrations')
.option('--matches <glob>', 'A glob pattern to filter migration files', '*')
.option('--compiler <ext:module>', 'Use the given module to compile files')
.option('--env [name]', 'Use dotenv to load an environment file')
.parse(process.argv)
// Change the working dir
process.chdir(program.chdir)
// Setup environment
if (program.env) {
var e = dotenv.config({
path: typeof program.env === 'string' ? program.env : '.env'
})
if (e && e.error instanceof Error) {
throw e.error
}
}
// Load compiler
if (program.compiler) {
registerCompiler(program.compiler)
}
// Setup store
var Store = require(program.store)
var store = new Store(program.stateFile)
// Load in migrations
migrate.load({
stateStore: store,
migrationsDirectory: program.migrationsDir,
filterFunction: minimatch.filter(program.matches)
}, function (err, set) {
if (err) {
log.error('error', err)
process.exit(1)
}
set.on('migration', function (migration, direction) {
log(direction, migration.title)
})
runMigrations(set, 'down', program.args[0], function (err) {
if (err) {
log('error', err)
process.exit(1)
}
log('migration', 'complete')
process.exit(0)
})
})