The server for Open Course World
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at tangled-test 11 lines 271 B view raw
1package orm 2 3type Bookmark struct { 4 ID BigInt `gorm:"column:id;primaryKey" json:"-"` 5 CourseID CourseID `gorm:"column:data_id" json:"course_id"` 6 PlayerID MakerID `gorm:"column:pid" json:"player_id"` 7} 8 9func (Bookmark) TableName() string { 10 return "bookmark" 11}