Force utf8 encoding on migration
Force table coding to utf8 to avoid index too long error
This commit is contained in:
parent
40414fe6ae
commit
e5551c3bff
1 changed files with 1 additions and 1 deletions
|
@ -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{})
|
||||
|
|
Loading…
Add table
Reference in a new issue