aboutsummaryrefslogtreecommitdiff
path: root/internal/db
diff options
context:
space:
mode:
authorᴜɴᴋɴᴡᴏɴ <u@gogs.io>2020-09-18 18:37:47 +0800
committerGitHub <noreply@github.com>2020-09-18 18:37:47 +0800
commitc56db8f2c4846ce5a23e08bc82def310041033a0 (patch)
treed018298d31c20b1776c048bb211cd6ae8a91bd9f /internal/db
parentdda1092e74fa82f23a7ad62434fc60200f8df5ca (diff)
db: create new session for MySQL after changing attribute (#6338)
Diffstat (limited to 'internal/db')
-rw-r--r--internal/db/db.go5
1 files changed, 4 insertions, 1 deletions
diff --git a/internal/db/db.go b/internal/db/db.go
index ce130f2c..c3e3f19a 100644
--- a/internal/db/db.go
+++ b/internal/db/db.go
@@ -187,7 +187,10 @@ func Init() (*gorm.DB, error) {
conf.UsePostgreSQL = true
case "mysql":
conf.UseMySQL = true
- db = db.Set("gorm:table_options", "ENGINE=InnoDB")
+ db = db.Set("gorm:table_options", "ENGINE=InnoDB").
+ Session(&gorm.Session{
+ WithConditions: true,
+ })
case "sqlite3":
conf.UseSQLite3 = true
case "mssql":