package pgModels import ( "gorm.io/gorm" "time" ) type BaseModel struct { ID string `gorm:"primaryKey"` CreatedAt time.Time UpdatedAt time.Time DeletedAt gorm.DeletedAt `gorm:"index"` }