mirror of
https://github.com/muety/wakapi.git
synced 2023-08-10 21:12:56 +03:00
23 lines
434 B
Go
23 lines
434 B
Go
package migrations
|
|
|
|
import (
|
|
"github.com/emvi/logbuch"
|
|
"github.com/muety/wakapi/config"
|
|
"gorm.io/gorm"
|
|
)
|
|
|
|
func init() {
|
|
const name = "20210411-drop_migrations_table"
|
|
f := migrationFunc{
|
|
name: name,
|
|
f: func(db *gorm.DB, cfg *config.Config) error {
|
|
if err := db.Migrator().DropTable("gorp_migrations"); err == nil {
|
|
logbuch.Info("dropped table 'gorp_migrations'")
|
|
}
|
|
return nil
|
|
},
|
|
}
|
|
|
|
registerPostMigration(f)
|
|
}
|