9 lines
231 B
Go
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
|