Add additional tests for postgres driver

This commit is contained in:
Adrian Macneil 2015-11-28 22:31:55 -07:00
parent c6aba53e51
commit e87dd1e608
5 changed files with 164 additions and 37 deletions

View file

@ -193,7 +193,7 @@ func MigrateCommand(ctx *cli.Context) error {
for filename := range available {
ver := migrationVersion(filename)
if _, ok := applied[ver]; ok {
if ok := applied[ver]; ok {
// migration already applied
continue
}