package database import "time" type LogAds struct { ID string `gorm:"primaryKey;not null" json:"id"` AdsID string `gorm:"not null" json:"ads_id"` UserID string `gorm:"not null" json:"user_id"` CreatedAt time.Time `gorm:"default:CURRENT_TIMESTAMP" json:"created_at"` UpdatedAt time.Time `gorm:"default:CURRENT_TIMESTAMP" json:"updated_at"` }