newdrive/db/migrations/migrations.go
Elijah 077cf7601a
Some checks failed
CI / Backend (push) Failing after 4s
CI / Frontend (push) Successful in 11s
CI / Contracts and repository policy (push) Failing after 5s
CI / Container (push) Has been skipped
Initial phase 1 baseline implementation
2026-07-16 19:14:01 -07:00

9 lines
231 B
Go

// Package migrations embeds the forward-only PostgreSQL migration source.
package migrations
import "embed"
// Files contains every forward migration used by the application at startup.
//
//go:embed *.up.sql
var Files embed.FS