2020-03-27 12:34:39 +00:00
|
|
|
// Copyright 2020 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.
|
|
|
|
|
2022-11-02 08:54:36 +00:00
|
|
|
package v1_12 //nolint
|
2020-03-27 12:34:39 +00:00
|
|
|
|
|
|
|
import "xorm.io/xorm"
|
|
|
|
|
2022-11-02 08:54:36 +00:00
|
|
|
func AddEmailHashTable(x *xorm.Engine) error {
|
2020-03-27 12:34:39 +00:00
|
|
|
// EmailHash represents a pre-generated hash map
|
|
|
|
type EmailHash struct {
|
|
|
|
Hash string `xorm:"pk varchar(32)"`
|
|
|
|
Email string `xorm:"UNIQUE NOT NULL"`
|
|
|
|
}
|
|
|
|
return x.Sync2(new(EmailHash))
|
|
|
|
}
|