add new column comment to member table

This commit is contained in:
Adrian Zürcher
2025-11-10 15:59:16 +01:00
parent b3e58805fc
commit b85caeadbd
2 changed files with 19 additions and 0 deletions

View File

@@ -17,4 +17,5 @@ type Member struct {
LastVisit string `gorm:"column:lastVisit" json:"lastVisit,omitempty"`
Group string `gorm:"column:group" json:"group,omitempty"`
ResponsiblePerson Person `gorm:"type:json" json:"responsiblePerson"`
Comment string `gorm:"column:comment" json:"comment"`
}