// Package migrations provides the embedded SQL migration files for golang-migrate. // Files are named in the golang-migrate convention: // // {version}_{title}.up.sql // {version}_{title}.down.sql // // The FS is consumed by internal/store.MigrateUp / MigrateDown. package migrations import "embed" // FS contains all *.sql files in this directory, embedded at compile time. // //go:embed *.sql var FS embed.FS