remove returning password

This commit is contained in:
2025-12-09 23:27:19 +00:00
parent 74f72022e0
commit 21eeb351c8

View File

@@ -5,6 +5,6 @@ import "gorm.io/gorm"
type User struct {
gorm.Model // includes ID, CreatedAt, UpdatedAt, DeletedAt
Username string `gorm:"uniqueIndex"`
Password []byte
Password []byte `json:"-"`
Admin bool
}