10 lines
257 B
Go
10 lines
257 B
Go
// Package migrations defines the database migrations to apply when using the migrate tags
|
|
package migrations
|
|
|
|
import (
|
|
"github.com/uptrace/bun/migrate"
|
|
)
|
|
|
|
// Migrations is the collection of all database migrations
|
|
var Migrations = migrate.NewMigrations()
|