Files

16 lines
362 B
Go
Raw Permalink Normal View History

2023-10-17 12:31:13 +08:00
// Copyright 2023, Command Line Inc.
// SPDX-License-Identifier: Apache-2.0
2022-10-31 12:24:21 -07:00
// provides the io/fs for DB migrations
package db
import "embed"
// since embeds must be relative to the package directory, this source file is required
//go:embed migrations/*.sql
var MigrationFS embed.FS
2024-05-06 10:24:34 -07:00
//go:embed blockstore-migrations/*.sql
var BlockstoreMigrationFS embed.FS