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