package model import ( "time" ) type Fans struct { ID uint `gorm:"primarykey"` CreatedAt time.Time UID uint `gorm:"index;not null"` Fans uint `gorm:"index;not null;default:0"` } func (Fans) TableName() string { return "fans" }