bbs-backend/models/init.go
2024-11-19 21:08:28 +08:00

14 lines
140 B
Go

package models
import (
"gorm.io/gorm"
)
func InitDB() *gorm.DB {
// ... 现有连接代码 ...
db.AutoMigrate(&Post{})
return db
}