mirror of
https://github.com/c9s/bbgo.git
synced 2024-11-10 09:11:55 +00:00
8 lines
151 B
SQL
8 lines
151 B
SQL
-- +goose Up
|
|
ALTER TABLE `trades`
|
|
ADD COLUMN `order_id` BIGINT UNSIGNED NOT NULL;
|
|
|
|
-- +goose Down
|
|
ALTER TABLE `trades`
|
|
DROP COLUMN `order_id`;
|