14 lines
134 B
Go
Raw Permalink Normal View History

package model
import (
"gorm.io/gorm"
)
func Init(tx *gorm.DB) (err error) {
err = tx.AutoMigrate(
&Connection{},
)
return
}