2020-01-19 22:27:44 +00:00
|
|
|
// Copyright 2020 The Gitea Authors. All rights reserved.
|
2022-11-27 18:20:29 +00:00
|
|
|
// SPDX-License-Identifier: MIT
|
2020-01-19 22:27:44 +00:00
|
|
|
|
2022-11-02 08:54:36 +00:00
|
|
|
package v1_12 //nolint
|
2020-01-19 22:27:44 +00:00
|
|
|
|
|
|
|
import (
|
|
|
|
"xorm.io/xorm"
|
|
|
|
)
|
|
|
|
|
2022-11-02 08:54:36 +00:00
|
|
|
func AddUserRepoMissingColumns(x *xorm.Engine) error {
|
2020-01-19 22:27:44 +00:00
|
|
|
type VisibleType int
|
|
|
|
type User struct {
|
|
|
|
PasswdHashAlgo string `xorm:"NOT NULL DEFAULT 'pbkdf2'"`
|
|
|
|
Visibility VisibleType `xorm:"NOT NULL DEFAULT 0"`
|
|
|
|
}
|
|
|
|
|
|
|
|
type Repository struct {
|
|
|
|
IsArchived bool `xorm:"INDEX"`
|
|
|
|
Topics []string `xorm:"TEXT JSON"`
|
|
|
|
}
|
|
|
|
|
|
|
|
return x.Sync2(new(User), new(Repository))
|
|
|
|
}
|