// Package migrations embeds the SQL migration files for use by the migrate binary. package migrations import "embed" // FS holds all migration files (*.sql) under this directory. // //go:embed *.sql var FS embed.FS