mirror of
https://github.com/muety/wakapi.git
synced 2023-08-10 21:12:56 +03:00
b6812ddc3a
fix: cascade for alias user foreign key constraint
33 lines
910 B
Go
33 lines
910 B
Go
package migrations
|
|
|
|
import (
|
|
"github.com/emvi/logbuch"
|
|
"github.com/muety/wakapi/config"
|
|
"github.com/muety/wakapi/models"
|
|
"gorm.io/gorm"
|
|
)
|
|
|
|
func init() {
|
|
f := migrationFunc{
|
|
name: "20201103-rename_language_mappings_table",
|
|
f: func(db *gorm.DB, cfg *config.Config) error {
|
|
migrator := db.Migrator()
|
|
oldTableName, newTableName := "custom_rules", "language_mappings"
|
|
oldIndexName, newIndexName := "idx_customrule_user", "idx_language_mapping_user"
|
|
|
|
if migrator.HasTable(oldTableName) {
|
|
logbuch.Info("renaming '%s' table to '%s'", oldTableName, newTableName)
|
|
if err := migrator.RenameTable(oldTableName, &models.LanguageMapping{}); err != nil {
|
|
return err
|
|
}
|
|
|
|
logbuch.Info("renaming '%s' index to '%s'", oldIndexName, newIndexName)
|
|
return migrator.RenameIndex(&models.LanguageMapping{}, oldIndexName, newIndexName)
|
|
}
|
|
return nil
|
|
},
|
|
}
|
|
|
|
registerPreMigration(f)
|
|
}
|