10 lines
211 B
Go
10 lines
211 B
Go
// Package migrations exposes the append-only SQLite migrations embedded in the binary.
|
|
package migrations
|
|
|
|
import "embed"
|
|
|
|
// Files contains every released SQL migration.
|
|
//
|
|
//go:embed *.sql
|
|
var Files embed.FS
|