1
0
mirror of https://github.com/astaxie/beego.git synced 2024-09-28 18:11:51 +00:00

Merge pull request #737 from ZhengYang/develop

change time format for migration module
This commit is contained in:
astaxie 2014-08-13 16:37:13 +08:00
commit da6726f3da

View File

@ -101,7 +101,7 @@ func (m *Migration) addOrUpdateRecord(name, status string) error {
if err != nil {
return err
}
t, err := time.Parse(M_DB_DATE_FORMAT, m.Created)
t, err := time.Parse(M_DATE_FORMAT, m.Created)
if err != nil {
return err
}