fix: xorm needs to be lowercase otherwise it is ignored
Fixes: https://codeberg.org/forgejo/forgejo/issues/6389
This commit is contained in:
		
					parent
					
						
							
								b74406d82c
							
						
					
				
			
			
				commit
				
					
						b03ecf584c
					
				
			
		
					 1 changed files with 3 additions and 3 deletions
				
			
		|  | @ -52,10 +52,10 @@ type WebAuthnCredential struct { | |||
| 	AAGUID          []byte | ||||
| 	SignCount       uint32 `xorm:"BIGINT"` | ||||
| 	CloneWarning    bool | ||||
| 	BackupEligible  bool `XORM:"NOT NULL DEFAULT false"` | ||||
| 	BackupState     bool `XORM:"NOT NULL DEFAULT false"` | ||||
| 	BackupEligible  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. | ||||
| 	Legacy      bool               `XORM:"NOT NULL DEFAULT true"` | ||||
| 	Legacy      bool               `xorm:"NOT NULL DEFAULT true"` | ||||
| 	CreatedUnix timeutil.TimeStamp `xorm:"INDEX created"` | ||||
| 	UpdatedUnix timeutil.TimeStamp `xorm:"INDEX updated"` | ||||
| } | ||||
|  |  | |||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue
	
	 Earl Warren
				Earl Warren