房间麦克风热点计数
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

15 lines
286 B

package model
import (
"git.gz.internal.jumaiyx.cn/job/room-mike-hot-timer/pkg/redis"
"gorm.io/gorm"
)
func AutoMigrate(db *gorm.DB, cache *redis.Cache) error {
err := db.AutoMigrate()
if err != nil {
panic(err)
//log.Error("create sql table failed:%v", err)
}
return err
}