package model import "gorm.io/gorm" type Conference struct { gorm.Model } func (m *Conference) TableName() string { return "conference" }