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