bbgo_origin/pkg/migrations/mysql/main_20200819054742_trade_index.go

30 lines
625 B
Go
Raw Normal View History

2021-02-06 01:51:05 +00:00
package mysql
import (
"context"
2024-01-18 13:36:04 +00:00
"github.com/c9s/rockhopper/v2"
2021-02-06 01:51:05 +00:00
)
func init() {
2024-01-18 13:36:04 +00:00
AddMigration("main", up_main_tradeIndex, down_main_tradeIndex)
2021-02-06 01:51:05 +00:00
}
2024-01-18 13:36:04 +00:00
func up_main_tradeIndex(ctx context.Context, tx rockhopper.SQLExecutor) (err error) {
2021-02-06 01:51:05 +00:00
// 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
}
2024-01-18 13:36:04 +00:00
func down_main_tradeIndex(ctx context.Context, tx rockhopper.SQLExecutor) (err error) {
2021-02-06 01:51:05 +00:00
// 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
}