summaryrefslogtreecommitdiffstats
path: root/models/forgejo_migrations/v22.go
blob: eeb738799cd83c1a4366c59a1a18fb2ee7124340 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// Copyright 2024 The Forgejo Authors. All rights reserved.
// SPDX-License-Identifier: MIT

package forgejo_migrations //nolint:revive

import "xorm.io/xorm"

func AddLegacyToWebAuthnCredential(x *xorm.Engine) error {
	type WebauthnCredential struct {
		ID             int64 `xorm:"pk autoincr"`
		BackupEligible bool  `xorm:"NOT NULL DEFAULT false"`
		BackupState    bool  `xorm:"NOT NULL DEFAULT false"`
		Legacy         bool  `xorm:"NOT NULL DEFAULT true"`
	}

	return x.Sync(&WebauthnCredential{})
}