2020-01-20 03:57:44 +05:30
|
|
|
// Copyright 2020 The Gitea Authors. All rights reserved.
|
2022-11-27 23:50:29 +05:30
|
|
|
// SPDX-License-Identifier: MIT
|
2020-01-20 03:57:44 +05:30
|
|
|
|
2022-11-02 14:24:36 +05:30
|
|
|
package v1_12 //nolint
|
2020-01-20 03:57:44 +05:30
|
|
|
|
|
|
|
import (
|
|
|
|
"xorm.io/xorm"
|
|
|
|
)
|
|
|
|
|
2022-11-02 14:24:36 +05:30
|
|
|
func AddUserRepoMissingColumns(x *xorm.Engine) error {
|
2020-01-20 03:57:44 +05:30
|
|
|
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))
|
|
|
|
}
|