Change totp secret datatype from varchar to text
This commit is contained in:
parent
f30e405229
commit
7e1d0a81bf
2 changed files with 44 additions and 1 deletions
43
pkg/migration/20200509103709.go
Normal file
43
pkg/migration/20200509103709.go
Normal file
|
@ -0,0 +1,43 @@
|
||||||
|
// Vikunja is a to-do list application to facilitate your life.
|
||||||
|
// Copyright 2018-2020 Vikunja and contributors. All rights reserved.
|
||||||
|
//
|
||||||
|
// This program is free software: you can redistribute it and/or modify
|
||||||
|
// it under the terms of the GNU General Public License as published by
|
||||||
|
// the Free Software Foundation, either version 3 of the License, or
|
||||||
|
// (at your option) any later version.
|
||||||
|
//
|
||||||
|
// This program is distributed in the hope that it will be useful,
|
||||||
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
// GNU General Public License for more details.
|
||||||
|
//
|
||||||
|
// You should have received a copy of the GNU General Public License
|
||||||
|
// along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
|
package migration
|
||||||
|
|
||||||
|
import (
|
||||||
|
"src.techknowlogick.com/xormigrate"
|
||||||
|
"xorm.io/xorm"
|
||||||
|
)
|
||||||
|
|
||||||
|
type totp20200509103709 struct {
|
||||||
|
Secret string `xorm:"text not null" json:"secret"`
|
||||||
|
}
|
||||||
|
|
||||||
|
func (t totp20200509103709) TableName() string {
|
||||||
|
return "totp"
|
||||||
|
}
|
||||||
|
|
||||||
|
func init() {
|
||||||
|
migrations = append(migrations, &xormigrate.Migration{
|
||||||
|
ID: "20200509103709",
|
||||||
|
Description: "Fix totp secret data type",
|
||||||
|
Migrate: func(tx *xorm.Engine) error {
|
||||||
|
return tx.Sync2(totp20200509103709{})
|
||||||
|
},
|
||||||
|
Rollback: func(tx *xorm.Engine) error {
|
||||||
|
return tx.DropTables(totp20200509103709{})
|
||||||
|
},
|
||||||
|
})
|
||||||
|
}
|
|
@ -26,7 +26,7 @@ import (
|
||||||
type TOTP struct {
|
type TOTP struct {
|
||||||
ID int64 `xorm:"int(11) autoincr not null unique pk" json:"-"`
|
ID int64 `xorm:"int(11) autoincr not null unique pk" json:"-"`
|
||||||
UserID int64 `xorm:"int(11) not null" json:"-"`
|
UserID int64 `xorm:"int(11) not null" json:"-"`
|
||||||
Secret string `xorm:"varchar(20) not null" json:"secret"`
|
Secret string `xorm:"text not null" json:"secret"`
|
||||||
// The totp entry will only be enabled after the user verified they have a working totp setup.
|
// The totp entry will only be enabled after the user verified they have a working totp setup.
|
||||||
Enabled bool `xorm:"null" json:"enabled"`
|
Enabled bool `xorm:"null" json:"enabled"`
|
||||||
// The totp url used to be able to enroll the user later
|
// The totp url used to be able to enroll the user later
|
||||||
|
|
Loading…
Reference in a new issue