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.
16 lines
286 B
16 lines
286 B
2 years ago
|
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
|
||
|
}
|