mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2024-11-10 12:49:52 +01:00
add migration
This commit is contained in:
parent
6ef691b8d7
commit
108971ddc8
2 changed files with 20 additions and 0 deletions
|
@ -72,6 +72,8 @@ var migrations = []*Migration{
|
|||
NewMigration("Create the `federated_user` table", CreateFederatedUserTable),
|
||||
// v17 -> v18
|
||||
NewMigration("Add `normalized_federated_uri` column to `user` table", AddNormalizedFederatedURIToUser),
|
||||
// v18 -> v19
|
||||
NewMigration("Create the `following_repo` table", CreateFollowingRepoTable),
|
||||
}
|
||||
|
||||
// GetCurrentDBVersion returns the current Forgejo database version.
|
||||
|
|
18
models/forgejo_migrations/v18.go
Normal file
18
models/forgejo_migrations/v18.go
Normal file
|
@ -0,0 +1,18 @@
|
|||
// Copyright 2024 The Forgejo Authors. All rights reserved.
|
||||
// SPDX-License-Identifier: MIT
|
||||
|
||||
package forgejo_migrations //nolint:revive
|
||||
|
||||
import "xorm.io/xorm"
|
||||
|
||||
type FollowingRepo struct {
|
||||
ID int64 `xorm:"pk autoincr"`
|
||||
RepoID int64 `xorm:"UNIQUE(federation_repo_mapping) NOT NULL"`
|
||||
ExternalID string `xorm:"UNIQUE(federation_repo_mapping) NOT NULL"`
|
||||
FederationHostID int64 `xorm:"UNIQUE(federation_repo_mapping) NOT NULL"`
|
||||
URI string
|
||||
}
|
||||
|
||||
func CreateFollowingRepoTable(x *xorm.Engine) error {
|
||||
return x.Sync(new(FederatedUser))
|
||||
}
|
Loading…
Reference in a new issue