phoenix/backend/groups.go

8 lines
163 B
Go
Raw Normal View History

2023-04-06 10:36:11 +05:00
package backend
type Group struct {
2023-04-06 10:37:48 +05:00
ID uint64 `gorm:"primaryKey"`
2023-04-06 10:36:11 +05:00
Name string `gorm:"unique,notNull"`
2023-04-09 11:55:08 +05:00
Links []Link `gorm:"constraint:OnDelete:CASCADE;"`
2023-04-06 10:36:11 +05:00
}