// Package migrations exposes the SQL migration files as an embed.FS so the // migrate binary doesn't have to ship them as loose files at runtime. package migrations import "embed" // FS holds every *.sql file in this directory at build time. // //go:embed *.sql var FS embed.FS