Force utf8 encoding on migration

Force table coding to utf8 to avoid index too long error
This commit is contained in:
wzxjohn 2020-09-11 10:32:27 +08:00 committed by GitHub
parent 40414fe6ae
commit e5551c3bff
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -32,7 +32,7 @@ func migration() {
// 自动迁移模式
if conf.DatabaseConfig.Type == "mysql" {
DB = DB.Set("gorm:table_options", "ENGINE=InnoDB")
DB = DB.Set("gorm:table_options", "ENGINE=InnoDB CHARSET=utf8")
}
DB.AutoMigrate(&User{}, &Setting{}, &Group{}, &Policy{}, &Folder{}, &File{}, &Share{},
&Task{}, &Download{}, &Tag{}, &Webdav{})