10 lines
237 B
Go
10 lines
237 B
Go
package db
|
|
|
|
import "evobgp/migrations"
|
|
|
|
// PostgresMigrations and SQLiteMigrations expose embedded SQL files for migrate runners (plan §1, §11).
|
|
var (
|
|
PostgresMigrations = migrations.Postgres
|
|
SQLiteMigrations = migrations.SQLite
|
|
)
|