Some checks failed
/ docker (push) Failing after 2m57s
- Read handler for create activities (notes only so far) - Read handler for note objects - Structure laid out for other objects, activities and collections - DB structure for activities created - Update access logging TODO: Create collections type in DB to describe a collection group
7 lines
120 B
Go
7 lines
120 B
Go
package models
|
|
|
|
type Collection struct {
|
|
Id string `gorm:"primarykey"`
|
|
TargetId string
|
|
TargetType uint32
|
|
}
|