bbgo_origin/pkg/migrations/mysql/20210119232826_add_margin_columns.go

35 lines
619 B
Go
Raw Normal View History

2021-02-06 01:51:05 +00:00
package mysql
import (
"context"
"github.com/c9s/rockhopper"
)
func init() {
2021-02-17 09:28:05 +00:00
AddMigration(upAddMarginColumns, downAddMarginColumns)
2021-02-06 01:51:05 +00:00
}
func upAddMarginColumns(ctx context.Context, tx rockhopper.SQLExecutor) (err error) {
// This code is executed when the migration is applied.
2022-03-11 08:05:12 +00:00
_, err = tx.ExecContext(ctx, "SELECT 1;")
2021-02-06 01:51:05 +00:00
if err != nil {
return err
}
return err
}
func downAddMarginColumns(ctx context.Context, tx rockhopper.SQLExecutor) (err error) {
// This code is executed when the migration is rolled back.
2022-03-11 08:05:12 +00:00
_, err = tx.ExecContext(ctx, "SELECT 1;")
2021-02-06 01:51:05 +00:00
if err != nil {
return err
}
return err
}