mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2025-01-19 21:36:49 +01:00
Merge pull request 'fix: xorm needs to be lowercase otherwise it is ignored' (#6405) from earl-warren/forgejo:wip-webauthn into forgejo
Reviewed-on: https://codeberg.org/forgejo/forgejo/pulls/6405 Reviewed-by: Gusted <gusted@noreply.codeberg.org> Reviewed-by: Michael Kriese <michael.kriese@gmx.de> Reviewed-by: 0ko <0ko@noreply.codeberg.org>
This commit is contained in:
commit
3870acbdfd
1 changed files with 3 additions and 3 deletions
|
@ -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"`
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue