12 lines
234 B
Go
12 lines
234 B
Go
package model
|
|
|
|
import "time"
|
|
|
|
type Like struct {
|
|
ID uint `gorm:"primaryKey"`
|
|
PageURL string `gorm:"uniqueIndex;size:255;not null"`
|
|
LikeCount int `gorm:"default:0"`
|
|
CreatedAt time.Time
|
|
UpdatedAt time.Time
|
|
}
|