Fix bug with migration file name

This commit is contained in:
Vikram Rangnekar 2019-11-10 01:39:24 -05:00
parent 0a6995eaca
commit c576f1ae16
1 changed files with 1 additions and 1 deletions

View File

@ -124,7 +124,7 @@ func cmdDBNew(cmd *cobra.Command, args []string) {
os.Exit(1)
}
mname := fmt.Sprintf("%03d_%s.sql", (len(m) + 1), name)
mname := fmt.Sprintf("%d_%s.sql", (len(m) + 1), name)
// Write new migration
mpath := filepath.Join(conf.MigrationsPath, mname)