2021-01-13 16:33:28 +00:00
|
|
|
package migrations
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
|
|
|
|
"github.com/c9s/rockhopper"
|
|
|
|
)
|
|
|
|
|
|
|
|
func init() {
|
|
|
|
rockhopper.AddMigration(upOrdersAddIndex, downOrdersAddIndex)
|
|
|
|
}
|
|
|
|
|
2021-01-15 02:31:37 +00:00
|
|
|
func upOrdersAddIndex(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, "CREATE INDEX orders_symbol ON orders (exchange, symbol);")
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
_, err = tx.ExecContext(ctx, "CREATE UNIQUE INDEX orders_order_id ON orders (order_id, exchange);")
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2021-01-15 02:31:37 +00:00
|
|
|
func downOrdersAddIndex(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, "DROP INDEX orders_symbol ON orders;")
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
_, err = tx.ExecContext(ctx, "DROP INDEX orders_order_id ON orders;")
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
return err
|
|
|
|
}
|