2019-03-05 02:34:52 +00:00
|
|
|
// Copyright 2019 The Gitea Authors. All rights reserved.
|
|
|
|
// Use of this source code is governed by a MIT-style
|
|
|
|
// license that can be found in the LICENSE file.
|
|
|
|
|
|
|
|
package migrations
|
|
|
|
|
|
|
|
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
|
|
|
)
|
|
|
|
|
|
|
|
func changeU2FCounterType(x *xorm.Engine) error {
|
|
|
|
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")
|
2020-03-22 15:12:55 +00:00
|
|
|
case schemas.MSSQL:
|
2019-03-05 02:34:52 +00:00
|
|
|
_, err = x.Exec("ALTER TABLE `u2f_registration` ALTER COLUMN `counter` BIGINT")
|
|
|
|
}
|
|
|
|
|
|
|
|
if err != nil {
|
|
|
|
return fmt.Errorf("Error changing u2f_registration counter column type: %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|