2020-09-10 19:45:01 +00:00
|
|
|
// Copyright 2020 The Gitea Authors. All rights reserved.
|
2022-11-27 18:20:29 +00:00
|
|
|
// SPDX-License-Identifier: MIT
|
2020-09-10 19:45:01 +00:00
|
|
|
|
2022-11-02 08:54:36 +00:00
|
|
|
package v1_13 //nolint
|
2020-09-10 19:45:01 +00:00
|
|
|
|
|
|
|
import (
|
2022-11-02 08:54:36 +00:00
|
|
|
"code.gitea.io/gitea/models/migrations/base"
|
2020-09-10 19:45:01 +00:00
|
|
|
"code.gitea.io/gitea/modules/timeutil"
|
|
|
|
|
|
|
|
"xorm.io/xorm"
|
|
|
|
)
|
|
|
|
|
2022-11-02 08:54:36 +00:00
|
|
|
func AddPrimaryKeyToRepoTopic(x *xorm.Engine) error {
|
2020-09-10 19:45:01 +00:00
|
|
|
// Topic represents a topic of repositories
|
|
|
|
type Topic struct {
|
|
|
|
ID int64 `xorm:"pk autoincr"`
|
|
|
|
Name string `xorm:"UNIQUE VARCHAR(25)"`
|
|
|
|
RepoCount int
|
|
|
|
CreatedUnix timeutil.TimeStamp `xorm:"INDEX created"`
|
|
|
|
UpdatedUnix timeutil.TimeStamp `xorm:"INDEX updated"`
|
|
|
|
}
|
|
|
|
|
|
|
|
// RepoTopic represents associated repositories and topics
|
|
|
|
type RepoTopic struct {
|
|
|
|
RepoID int64 `xorm:"pk"`
|
|
|
|
TopicID int64 `xorm:"pk"`
|
|
|
|
}
|
|
|
|
|
|
|
|
sess := x.NewSession()
|
|
|
|
defer sess.Close()
|
|
|
|
if err := sess.Begin(); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2022-11-02 08:54:36 +00:00
|
|
|
base.RecreateTable(sess, &Topic{})
|
|
|
|
base.RecreateTable(sess, &RepoTopic{})
|
2020-09-10 19:45:01 +00:00
|
|
|
|
|
|
|
return sess.Commit()
|
|
|
|
}
|