14 lines
301 B
Go
14 lines
301 B
Go
package migrations
|
|
|
|
import "embed"
|
|
|
|
// Postgres contains versioned SQL for the primary PostgreSQL path (plan §11).
|
|
//
|
|
//go:embed postgres/*.sql
|
|
var Postgres embed.FS
|
|
|
|
// SQLite contains the parallel schema for optional microVPS_sqlite (plan §2, §11).
|
|
//
|
|
//go:embed sqlite/*.sql
|
|
var SQLite embed.FS
|