mirror of https://github.com/pressly/goose.git
status: ensure that the version table exists
parent
c1320a5e81
commit
9140de5045
|
@ -41,6 +41,11 @@ func statusRun(cmd *Command, args ...string) {
|
|||
}
|
||||
defer db.Close()
|
||||
|
||||
// must ensure that the version table exists if we're running on a pristine DB
|
||||
if _, e := ensureDBVersion(db); e != nil {
|
||||
log.Fatal(e)
|
||||
}
|
||||
|
||||
fmt.Printf("goose: status for environment '%v'\n", conf.Env)
|
||||
fmt.Println(" Applied At Migration")
|
||||
fmt.Println(" =======================================")
|
||||
|
|
Loading…
Reference in New Issue