mirror of https://github.com/pressly/goose.git
Panic on duplicate migration version
parent
caf14b8e35
commit
52af0e6a35
11
migrate.go
11
migrate.go
|
@ -39,9 +39,14 @@ type Migration struct {
|
||||||
type migrationSorter []*Migration
|
type migrationSorter []*Migration
|
||||||
|
|
||||||
// helpers so we can use pkg sort
|
// helpers so we can use pkg sort
|
||||||
func (ms migrationSorter) Len() int { return len(ms) }
|
func (ms migrationSorter) Len() int { return len(ms) }
|
||||||
func (ms migrationSorter) Swap(i, j int) { ms[i], ms[j] = ms[j], ms[i] }
|
func (ms migrationSorter) Swap(i, j int) { ms[i], ms[j] = ms[j], ms[i] }
|
||||||
func (ms migrationSorter) Less(i, j int) bool { return ms[i].Version < ms[j].Version }
|
func (ms migrationSorter) Less(i, j int) bool {
|
||||||
|
if ms[i].Version == ms[j].Version {
|
||||||
|
panic(fmt.Sprintf("goose: duplicate version %v detected", ms[i].Version))
|
||||||
|
}
|
||||||
|
return ms[i].Version < ms[j].Version
|
||||||
|
}
|
||||||
|
|
||||||
func AddMigration(up func(*sql.Tx) error, down func(*sql.Tx) error) {
|
func AddMigration(up func(*sql.Tx) error, down func(*sql.Tx) error) {
|
||||||
_, filename, _, _ := runtime.Caller(1)
|
_, filename, _, _ := runtime.Caller(1)
|
||||||
|
|
Loading…
Reference in New Issue