fix: set CHARSET to utf8mb4 if use mysql

This commit is contained in:
Noah Hsu
2022-09-15 17:14:03 +08:00
parent f22232de5d
commit 86a625cb40
2 changed files with 5 additions and 2 deletions

View File

@ -53,6 +53,9 @@ func InitDB() {
dsn := fmt.Sprintf("%s:%s@tcp(%s:%d)/%s?charset=utf8mb4&parseTime=True&loc=Local&tls=%s",
database.User, database.Password, database.Host, database.Port, database.Name, database.SSLMode)
dB, err = gorm.Open(mysql.Open(dsn), gormConfig)
if err == nil {
dB = dB.Set("gorm:table_options", "ENGINE=InnoDB CHARSET=utf8mb4")
}
}
case "postgres":
{