icechen c048909a9d
All checks were successful
continuous-integration/drone/push Build is passing
feat: service-lark update
2022-01-12 00:40:37 +08:00

13 lines
159 B
Go

package model
import (
"git.icechen.cn/monorepo/backend/pkg/orm"
)
func init() {
err := orm.DB.AutoMigrate(&UserInfo{})
if err != nil {
panic(err)
}
}