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