mirror of
https://github.com/muety/wakapi.git
synced 2023-08-10 21:12:56 +03:00
42 lines
912 B
Go
42 lines
912 B
Go
package migrations
|
|
|
|
import (
|
|
"github.com/emvi/logbuch"
|
|
"github.com/muety/wakapi/config"
|
|
"github.com/muety/wakapi/models"
|
|
"gorm.io/gorm"
|
|
)
|
|
|
|
func init() {
|
|
const name = "20210221-add_created_date_column"
|
|
f := migrationFunc{
|
|
name: name,
|
|
f: func(db *gorm.DB, cfg *config.Config) error {
|
|
condition := "key = ?"
|
|
if cfg.Db.Dialect == config.SQLDialectMysql {
|
|
condition = "`key` = ?"
|
|
}
|
|
lookupResult := db.Where(condition, name).First(&models.KeyStringValue{})
|
|
if lookupResult.Error == nil && lookupResult.RowsAffected > 0 {
|
|
logbuch.Info("no need to migrate '%s'", name)
|
|
return nil
|
|
}
|
|
|
|
if err := db.Exec("UPDATE heartbeats SET created_at = time WHERE TRUE").Error; err != nil {
|
|
return err
|
|
}
|
|
|
|
if err := db.Create(&models.KeyStringValue{
|
|
Key: name,
|
|
Value: "done",
|
|
}).Error; err != nil {
|
|
return err
|
|
}
|
|
|
|
return nil
|
|
},
|
|
}
|
|
|
|
registerPostMigration(f)
|
|
}
|