Started working on optional fields (members)

This commit is contained in:
William Bouzourène 2025-01-15 16:16:24 +01:00
parent cf2c70df0d
commit 8226329b61
5 changed files with 204 additions and 10 deletions

View file

@ -4,8 +4,9 @@ import "gorm.io/gorm"
type List struct {
gorm.Model
Name string
Multi bool
Name string
Multi bool
ListItems []*ListItem
}
type ListItem struct {