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