package migrations import ( "context" "github.com/fnproject/fn/api/datastore/sql/migratex" "github.com/jmoiron/sqlx" ) func up9(ctx context.Context, tx *sqlx.Tx) error { _, err := tx.ExecContext(ctx, "ALTER TABLE routes ADD annotations TEXT;") return err } func down9(ctx context.Context, tx *sqlx.Tx) error { _, err := tx.ExecContext(ctx, "ALTER TABLE routes DROP COLUMN annotations;") return err } func init() { Migrations = append(Migrations, &migratex.MigFields{ VersionFunc: vfunc(9), UpFunc: up9, DownFunc: down9, }) }