package models import "gorm.io/gorm" type Post struct { gorm.Model // includes ID, CreatedAt, UpdatedAt, DeletedAt Title string `gorm:"not null"` Content string `gorm:"type:text; not null"` Author string `gorm:"not null"` }