1
0
forked from wrenn/wrenn
Files
wrenn-releases/db/migrations/embed.go
2026-04-16 19:24:25 +00:00

11 lines
260 B
Go

// Package migrations embeds the SQL migration files so that external modules
// (such as the enterprise edition) can access them programmatically.
package migrations
import "embed"
// FS contains all SQL migration files.
//
//go:embed *.sql
var FS embed.FS