Skip to content

Commit

Permalink
fix(migrations): migrations require version 0
Browse files Browse the repository at this point in the history
I suspect this relates to #89 but am not certain.
  • Loading branch information
frrist committed Oct 14, 2020
1 parent 65dd758 commit e6b228a
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions storage/migrations/0_null.go
Original file line number Diff line number Diff line change
@@ -1 +1,11 @@
package migrations

import (
"github.com/go-pg/migrations/v8"
)

func init() {
up := batch(``)
down := batch(``)
migrations.MustRegisterTx(up, down)
}

0 comments on commit e6b228a

Please sign in to comment.