Fix bug with migration file name
This commit is contained in:
parent
0a6995eaca
commit
c576f1ae16
|
@ -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)
|
||||
|
|
Loading…
Reference in New Issue