status: ensure that the version table exists

pull/2/head
Liam Staskawicz 2013-01-04 19:08:19 -10:00
parent c1320a5e81
commit 9140de5045
1 changed files with 5 additions and 0 deletions

View File

@ -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(" =======================================")