fix postgres syntax error during migration

This commit is contained in:
Steeve Chailloux 2015-11-09 19:39:47 -06:00
parent 821b2f832e
commit 29ac961c10
1 changed files with 2 additions and 2 deletions

View File

@ -104,7 +104,7 @@ func (m *Migration) addOrUpdateRecord(name, status string) error {
o := orm.NewOrm()
if status == "down" {
status = "rollback"
p, err := o.Raw("update migrations set `status` = ?, `rollback_statements` = ?, `created_at` = ? where name = ?").Prepare()
p, err := o.Raw("update migrations set status = ?, rollback_statements = ?, created_at = ? where name = ?").Prepare()
if err != nil {
return nil
}
@ -112,7 +112,7 @@ func (m *Migration) addOrUpdateRecord(name, status string) error {
return err
}
status = "update"
p, err := o.Raw("insert into migrations(`name`, `created_at`, `statements`, `status`) values(?,?,?,?)").Prepare()
p, err := o.Raw("insert into migrations(name, created_at, statements, status) values(?,?,?,?)").Prepare()
if err != nil {
return err
}