mirror of
https://github.com/fnproject/fn.git
synced 2022-10-28 21:29:17 +03:00
* move mattes migrations to migratex * changes format of migrations to migratex format * updates test runner to use new interface (double checked this with printlns, the tests go fully down and then up, and work on pg/mysql) * remove mattes/migrate * update tests from deps * update readme * fix other file extensions
11 lines
256 B
Go
11 lines
256 B
Go
package migrations
|
|
|
|
import (
|
|
"github.com/fnproject/fn/api/datastore/sql/migratex"
|
|
)
|
|
|
|
// Migrations is the list of fn specific sql migrations to run
|
|
var Migrations []migratex.Migration
|
|
|
|
func vfunc(v int64) func() int64 { return func() int64 { return v } }
|