fix: only master node can migrate database

This commit is contained in:
JustSong
2023-06-22 00:52:27 +08:00
parent b90b8a9d8c
commit 64d026fc1a
2 changed files with 6 additions and 0 deletions
+3
View File
@@ -55,6 +55,9 @@ func InitDB() (err error) {
}
if err == nil {
DB = db
if !common.IsMasterNode {
return nil
}
err := db.AutoMigrate(&Channel{})
if err != nil {
return err