12 lines
373 B
Go
12 lines
373 B
Go
|
|
package database
|
||
|
|
|
||
|
|
import "time"
|
||
|
|
|
||
|
|
type LogNews struct {
|
||
|
|
ID string `gorm:"primaryKey;not null" json:"id"`
|
||
|
|
NewsID string `gorm:"not null" json:"news_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"`
|
||
|
|
}
|