9 lines
103 B
Go
9 lines
103 B
Go
|
package models
|
||
|
|
||
|
import "gorm.io/gorm"
|
||
|
|
||
|
func Init(db *gorm.DB) {
|
||
|
db.AutoMigrate(&GuildPreference{})
|
||
|
|
||
|
}
|