bbgo_origin/pkg/migrations/20201211175751_fix_symbol_length.go

44 lines
952 B
Go
Raw Normal View History

2021-01-13 16:33:28 +00:00
package migrations
import (
"context"
"github.com/c9s/rockhopper"
)
func init() {
rockhopper.AddMigration(upFixSymbolLength, downFixSymbolLength)
}
2021-01-15 02:31:37 +00:00
func upFixSymbolLength(ctx context.Context, tx rockhopper.SQLExecutor) (err error) {
2021-01-13 16:33:28 +00:00
// This code is executed when the migration is applied.
_, err = tx.ExecContext(ctx, "ALTER TABLE trades MODIFY COLUMN symbol VARCHAR(9);")
if err != nil {
return err
}
_, err = tx.ExecContext(ctx, "ALTER TABLE orders MODIFY COLUMN symbol VARCHAR(9);")
if err != nil {
return err
}
return err
}
2021-01-15 02:31:37 +00:00
func downFixSymbolLength(ctx context.Context, tx rockhopper.SQLExecutor) (err error) {
2021-01-13 16:33:28 +00:00
// This code is executed when the migration is rolled back.
_, err = tx.ExecContext(ctx, "ALTER TABLE trades MODIFY COLUMN symbol VARCHAR(8);")
if err != nil {
return err
}
_, err = tx.ExecContext(ctx, "ALTER TABLE orders MODIFY COLUMN symbol VARCHAR(8);")
if err != nil {
return err
}
return err
}