package models type Blog struct { ID uint `gorm:"primaryKey" json:"id"` Title string `gorm:"not null" json:"title"` Content string `gorm:"not null" json:"content"` UserID uint `gorm:"not null" json:"user_id"` }