forked from rubenv/sql-migrate
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcommand_common.go
More file actions
79 lines (65 loc) · 1.6 KB
/
command_common.go
File metadata and controls
79 lines (65 loc) · 1.6 KB
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
74
75
76
77
78
79
package main
import (
"fmt"
migrate "github.com/rubenv/sql-migrate"
)
func ApplyMigrations(dir migrate.MigrationDirection, dryrun bool, limit int, version int64) error {
env, err := GetEnvironment()
if err != nil {
return fmt.Errorf("Could not parse config: %w", err)
}
db, dialect, err := GetConnection(env)
if err != nil {
return err
}
defer db.Close()
source := migrate.FileMigrationSource{
Dir: env.Dir,
}
if dryrun {
var migrations []*migrate.PlannedMigration
if version >= 0 {
migrations, _, err = migrate.PlanMigrationToVersion(db, dialect, source, dir, version)
} else {
migrations, _, err = migrate.PlanMigration(db, dialect, source, dir, limit)
}
if err != nil {
return fmt.Errorf("Cannot plan migration: %w", err)
}
for _, m := range migrations {
PrintMigration(m, dir)
}
} else {
var n int
if version >= 0 {
n, err = migrate.ExecVersion(db, dialect, source, dir, version)
} else {
n, err = migrate.ExecMax(db, dialect, source, dir, limit)
}
if err != nil {
return fmt.Errorf("Migration failed: %w", err)
}
if n == 1 {
ui.Output("Applied 1 migration")
} else {
ui.Output(fmt.Sprintf("Applied %d migrations", n))
}
}
return nil
}
func PrintMigration(m *migrate.PlannedMigration, dir migrate.MigrationDirection) {
switch dir {
case migrate.Up:
ui.Output(fmt.Sprintf("==> Would apply migration %s (up)", m.Id))
for _, q := range m.Up {
ui.Output(q)
}
case migrate.Down:
ui.Output(fmt.Sprintf("==> Would apply migration %s (down)", m.Id))
for _, q := range m.Down {
ui.Output(q)
}
default:
panic("Not reached")
}
}