You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: models/migrations/migrations.go
+5-3Lines changed: 5 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -367,11 +367,13 @@ var migrations = []Migration{
367
367
// v206 -> v207
368
368
NewMigration("Add authorize column to team_unit table", addAuthorizeColForTeamUnit),
369
369
// v207 -> v208
370
-
NewMigration("Add webauthn table and migrate u2f data to webauthn", addWebAuthnCred),
370
+
NewMigration("Add webauthn table and migrate u2f data to webauthn - NO-OPED", addWebAuthnCred),
371
371
// v208 -> v209
372
-
NewMigration("Use base32.HexEncoding instead of base64 encoding for cred ID as it is case insensitive", useBase32HexForCredIDInWebAuthnCredential),
372
+
NewMigration("Use base32.HexEncoding instead of base64 encoding for cred ID as it is case insensitive - NO-OPED", useBase32HexForCredIDInWebAuthnCredential),
373
373
// v209 -> v210
374
-
NewMigration("Increase WebAuthentication CredentialID size to 410", increaseCredentialIDTo410),
374
+
NewMigration("Increase WebAuthentication CredentialID size to 410 - NO-OPED", increaseCredentialIDTo410),
375
+
// v210 -> v211
376
+
NewMigration("v208 was completely broken - remigrate", remigrateU2FCredentials),
375
377
}
376
378
377
379
// GetCurrentDBVersion returns the current db version
0 commit comments