7 lines
156 B
Go
7 lines
156 B
Go
package models
|
|
|
|
type Collection struct {
|
|
Id string `gorm:"primarykey"`
|
|
TargetId string
|
|
TargetType string `orm:"type:collection_target_type"`
|
|
}
|