10 lines
115 B
Go
Raw Normal View History

2024-09-27 14:52:10 +08:00
package model
import "gorm.io/gorm"
func Init(tx *gorm.DB) error {
return tx.AutoMigrate(
&Connection{},
)
}