11 lines
190 B
Go
11 lines
190 B
Go
package video
|
|
|
|
import "time"
|
|
|
|
type Like struct {
|
|
ID uint `gorm:"primaryKey"`
|
|
VideoID uint `gorm:"index, not null"`
|
|
AccountID uint `gorm:"index, not null"`
|
|
CreatedAt time.Time
|
|
}
|