blob: 9b72c8610b6ea82f13f1fce13cc06ab92e72db19 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
// Copyright 2022 The Gitea Authors. All rights reserved.
// SPDX-License-Identifier: MIT
package v1_17 //nolint
import (
"xorm.io/xorm"
)
func CreateForeignReferenceTable(_ *xorm.Engine) error {
return nil // This table was dropped in v1_19/v237.go
}
|