This commit is contained in:
dpurbosakti
2025-08-15 10:21:59 +07:00
parent 848f7d5a03
commit 61d0f91c3f
5 changed files with 195 additions and 157 deletions
+1 -1
View File
@@ -9,6 +9,6 @@ type User struct {
ecore.Main // adjust this according to the needs
Name string `json:"name" gorm:"not null;size:25"`
Password string `json:"password" gorm:"not null;size:255"`
Status_Code erc.StatusCode `json:"status_code" gorm:"not null;size:12"`
Status_Code erc.StatusCode `json:"status_code" gorm:"not null;size:10"`
FailedLoginCount uint8 `json:"failedLoginCount" gorm:"type:smallint"`
}