bbgo_origin/pkg/migrations/mysql/20211226022411_add_kucoin_klines.go

35 lines
675 B
Go
Raw Normal View History

2021-12-25 18:31:09 +00:00
package mysql
import (
"context"
"github.com/c9s/rockhopper"
)
func init() {
AddMigration(upAddKucoinKlines, downAddKucoinKlines)
}
func upAddKucoinKlines(ctx context.Context, tx rockhopper.SQLExecutor) (err error) {
// This code is executed when the migration is applied.
_, err = tx.ExecContext(ctx, "CREATE TABLE `kucoin_klines` LIKE `binance_klines`;")
if err != nil {
return err
}
return err
}
func downAddKucoinKlines(ctx context.Context, tx rockhopper.SQLExecutor) (err error) {
// This code is executed when the migration is rolled back.
_, err = tx.ExecContext(ctx, "DROP TABLE `kucoin_klines`;")
if err != nil {
return err
}
return err
}