2022-01-26 09:45:51 +00:00
|
|
|
// Copyright 2022 The Gitea Authors. All rights reserved.
|
2022-11-27 18:20:29 +00:00
|
|
|
// SPDX-License-Identifier: MIT
|
2022-01-26 09:45:51 +00:00
|
|
|
|
|
|
|
//go:build bindata
|
|
|
|
|
|
|
|
package migration
|
|
|
|
|
|
|
|
import (
|
|
|
|
"io"
|
|
|
|
"path"
|
|
|
|
)
|
|
|
|
|
|
|
|
func openSchema(filename string) (io.ReadCloser, error) {
|
|
|
|
return Assets.Open(path.Base(filename))
|
|
|
|
}
|