fix: xorm needs to be lowercase otherwise it is ignored

Fixes: https://codeberg.org/forgejo/forgejo/issues/6389
This commit is contained in:
Earl Warren 2024-12-29 16:25:51 +00:00
parent b74406d82c
commit b03ecf584c
No known key found for this signature in database
GPG key ID: 0579CB2928A78A00

View file

@ -52,10 +52,10 @@ type WebAuthnCredential struct {
AAGUID []byte AAGUID []byte
SignCount uint32 `xorm:"BIGINT"` SignCount uint32 `xorm:"BIGINT"`
CloneWarning bool CloneWarning bool
BackupEligible bool `XORM:"NOT NULL DEFAULT false"` BackupEligible bool `xorm:"NOT NULL DEFAULT false"`
BackupState bool `XORM:"NOT NULL DEFAULT false"` BackupState bool `xorm:"NOT NULL DEFAULT false"`
// If legacy is set to true, backup_eligible and backup_state isn't set. // If legacy is set to true, backup_eligible and backup_state isn't set.
Legacy bool `XORM:"NOT NULL DEFAULT true"` Legacy bool `xorm:"NOT NULL DEFAULT true"`
CreatedUnix timeutil.TimeStamp `xorm:"INDEX created"` CreatedUnix timeutil.TimeStamp `xorm:"INDEX created"`
UpdatedUnix timeutil.TimeStamp `xorm:"INDEX updated"` UpdatedUnix timeutil.TimeStamp `xorm:"INDEX updated"`
} }