bbgo_origin/migrations/20201102222546_orders.sql

28 lines
1.2 KiB
MySQL
Raw Normal View History

2020-11-03 07:28:30 +00:00
-- +goose Up
CREATE TABLE `orders`
(
`gid` BIGINT UNSIGNED NOT NULL AUTO_INCREMENT,
`exchange` VARCHAR(24) NOT NULL DEFAULT '',
-- order_id is the order id returned from the exchange
`order_id` BIGINT UNSIGNED NOT NULL,
`client_order_id` VARCHAR(42) NOT NULL DEFAULT '',
`order_type` VARCHAR(16) NOT NULL,
2020-11-03 07:28:30 +00:00
`symbol` VARCHAR(7) NOT NULL,
`status` VARCHAR(12) NOT NULL,
2020-11-03 10:45:14 +00:00
`time_in_force` VARCHAR(4) NOT NULL,
2020-11-03 07:28:30 +00:00
`price` DECIMAL(16, 8) UNSIGNED NOT NULL,
`stop_price` DECIMAL(16, 8) UNSIGNED NOT NULL,
`quantity` DECIMAL(16, 8) UNSIGNED NOT NULL,
`executed_quantity` DECIMAL(16, 8) UNSIGNED NOT NULL DEFAULT 0.0,
2020-11-03 07:28:30 +00:00
`side` VARCHAR(4) NOT NULL DEFAULT '',
2020-11-03 10:45:14 +00:00
`is_working` BOOL NOT NULL DEFAULT FALSE,
2020-11-05 05:35:04 +00:00
`created_at` DATETIME(3) NOT NULL,
`updated_at` DATETIME(3) NOT NULL DEFAULT CURRENT_TIMESTAMP(3) ON UPDATE CURRENT_TIMESTAMP(3),
2020-11-03 07:28:30 +00:00
PRIMARY KEY (`gid`)
) ENGINE = InnoDB;
2020-11-03 07:28:30 +00:00
-- +goose Down
DROP TABLE `orders`;