1
0
mirror of https://github.com/beego/bee.git synced 2025-07-05 18:20:18 +00:00

minor console message changes and migration file path changes

This commit is contained in:
ZhengYang
2014-08-11 10:36:20 +08:00
parent 6abaa4368b
commit 3d2a066a16
2 changed files with 2 additions and 2 deletions

View File

@ -32,7 +32,7 @@ const (
// The generated file template consists of an up() method for updating schema and
// a down() method for reverting the update.
func generateMigration(mname string, curpath string) {
migrationFilePath := path.Join(curpath, M_PATH)
migrationFilePath := path.Join(curpath, "database", M_PATH)
if _, err := os.Stat(migrationFilePath); os.IsNotExist(err) {
// create migrations directory
if err := os.MkdirAll(migrationFilePath, 0777); err != nil {