12 lines
256 B
Go
12 lines
256 B
Go
package model
|
|
|
|
import "time"
|
|
|
|
type LikeLog struct {
|
|
ID uint `gorm:"primaryKey"`
|
|
PageURL string `gorm:"index;size:255;not null"`
|
|
IPAddress string `gorm:"size:45;not null"`
|
|
UserAgent string `gorm:"size:255"`
|
|
CreatedAt time.Time
|
|
}
|