2019-03-05 02:34:52 +00:00
|
|
|
// Copyright 2019 The Gitea Authors. All rights reserved.
|
2022-11-27 18:20:29 +00:00
|
|
|
// SPDX-License-Identifier: MIT
|
2019-03-05 02:34:52 +00:00
|
|
|
|
2022-12-08 08:21:37 +00:00
|
|
|
package v1_8 //nolint
|
2019-03-05 02:34:52 +00:00
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
|
2019-10-17 09:26:49 +00:00
|
|
|
"xorm.io/xorm"
|
2020-03-22 15:12:55 +00:00
|
|
|
"xorm.io/xorm/schemas"
|
2019-03-05 02:34:52 +00:00
|
|
|
)
|
|
|
|
|
2022-11-02 08:54:36 +00:00
|
|
|
func ChangeU2FCounterType(x *xorm.Engine) error {
|
2019-03-05 02:34:52 +00:00
|
|
|
var err error
|
|
|
|
|
2020-03-22 15:12:55 +00:00
|
|
|
switch x.Dialect().URI().DBType {
|
|
|
|
case schemas.MYSQL:
|
2019-03-05 02:34:52 +00:00
|
|
|
_, err = x.Exec("ALTER TABLE `u2f_registration` MODIFY `counter` BIGINT")
|
2020-03-22 15:12:55 +00:00
|
|
|
case schemas.POSTGRES:
|
2019-03-05 02:34:52 +00:00
|
|
|
_, err = x.Exec("ALTER TABLE `u2f_registration` ALTER COLUMN `counter` SET DATA TYPE bigint")
|
|
|
|
}
|
|
|
|
|
|
|
|
if err != nil {
|
2022-10-24 19:29:17 +00:00
|
|
|
return fmt.Errorf("Error changing u2f_registration counter column type: %w", err)
|
2019-03-05 02:34:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|