giteabot backport / giteabot (push) Canceled after 0s
giteabot / giteabot (push) Canceled after 0s
release-nightly / nightly-binary (push) Canceled after 0s
release-nightly / nightly-container (push) Canceled after 0s
cache-seeder / gobuild (push) Canceled after 0s
cache-seeder / lint (bindata, lint-backend) (push) Canceled after 0s
release-nightly-snapcraft / build-and-publish (push) Canceled after 0s
Includes direct password setup links in registration emails. Assisted-by: Codex:GPT-5
31 lines
821 B
Go
31 lines
821 B
Go
// Copyright 2025 The Gitea Authors. All rights reserved.
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
package v1_24
|
|
|
|
import (
|
|
"gitea.dev/models/db"
|
|
"gitea.dev/models/migrations/base"
|
|
)
|
|
|
|
func MovePinOrderToTableIssuePin(x db.EngineMigration) error {
|
|
type IssuePin struct {
|
|
ID int64 `xorm:"pk autoincr"`
|
|
RepoID int64 `xorm:"UNIQUE(s) NOT NULL"`
|
|
IssueID int64 `xorm:"UNIQUE(s) NOT NULL"`
|
|
IsPull bool `xorm:"NOT NULL"`
|
|
PinOrder int `xorm:"DEFAULT 0"`
|
|
}
|
|
|
|
if err := x.Sync(new(IssuePin)); err != nil {
|
|
return err
|
|
}
|
|
|
|
if _, err := x.Exec("INSERT INTO issue_pin (repo_id, issue_id, is_pull, pin_order) SELECT repo_id, id, is_pull, pin_order FROM issue WHERE pin_order > 0"); err != nil {
|
|
return err
|
|
}
|
|
sess := x.NewSession()
|
|
defer sess.Close()
|
|
return base.DropTableColumns(sess, "issue", "pin_order")
|
|
}
|