mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2024-11-01 04:54:09 +00:00
71ca3067bc
Some dbs require that all tables have primary keys, see - #16802 - #21086 We can add a test to keep it from being broken again. Edit: ~Added missing primary key for `ForeignReference`~ Dropped the `ForeignReference` table to satisfy the check, so it closes #21086. More context can be found in comments. Signed-off-by: Andrew Thornton <art27@cantab.net> Co-authored-by: zeripath <art27@cantab.net>
16 lines
462 B
Go
16 lines
462 B
Go
// Copyright 2022 The Gitea Authors. All rights reserved.
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
package v1_19 //nolint
|
|
|
|
import (
|
|
"xorm.io/xorm"
|
|
)
|
|
|
|
func DropForeignReferenceTable(x *xorm.Engine) error {
|
|
// Drop the table introduced in `v211`, it's considered badly designed and doesn't look like to be used.
|
|
// See: https://github.com/go-gitea/gitea/issues/21086#issuecomment-1318217453
|
|
type ForeignReference struct{}
|
|
return x.DropTables(new(ForeignReference))
|
|
}
|