bbs-backend/models/init.go

14 lines
140 B
Go
Raw Normal View History

2024-11-19 21:08:28 +08:00
package models
import (
"gorm.io/gorm"
)
func InitDB() *gorm.DB {
// ... 现有连接代码 ...
db.AutoMigrate(&Post{})
return db
}