feat: add userTypes to Organization

This commit is contained in:
Yang Luo
2025-02-09 17:12:13 +08:00
parent c181006661
commit a0931e4597
4 changed files with 21 additions and 1 deletions

View File

@ -66,6 +66,7 @@ type Organization struct {
CountryCodes []string `xorm:"varchar(200)" json:"countryCodes"`
DefaultAvatar string `xorm:"varchar(200)" json:"defaultAvatar"`
DefaultApplication string `xorm:"varchar(100)" json:"defaultApplication"`
UserTypes []string `xorm:"mediumtext" json:"userTypes"`
Tags []string `xorm:"mediumtext" json:"tags"`
Languages []string `xorm:"varchar(255)" json:"languages"`
ThemeData *ThemeData `xorm:"json" json:"themeData"`