12 lines
364 B
Go
12 lines
364 B
Go
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:"default:null" json:"user_id"`
|
|
CreatedAt time.Time `gorm:"default:CURRENT_TIMESTAMP" json:"created_at"`
|
|
UpdatedAt time.Time `gorm:"default:CURRENT_TIMESTAMP" json:"updated_at"`
|
|
}
|