package announcement import "gorm.io/gorm" type Announcement struct { gorm.Model Title string `gorm:"not null"` Content string `gorm:"type:text;not null"` }