change active to disabled

main v1.0.6
alex 2024-09-07 19:43:02 +02:00
parent 668c7d0795
commit 8b1d6c6c8b
1 changed files with 1 additions and 1 deletions

View File

@ -6,7 +6,7 @@ type User struct {
Id string `gorm:"primaryKey;type:varchar(36)"`
OrganizationId string `gorm:"type:varchar(36)"`
State uint8 `gorm:"type:tinyint(1)"`
Active bool `gorm:"type:tinyint(1)"`
Disabled bool `gorm:"type:tinyint(1)"`
RoleId string `gorm:"type:varchar(36)"`
FirstName string `gorm:"type:varchar(255)"`
LastName string `gorm:"type:varchar(255)"`