bbgo_origin/migrations/mysql/20220307132917_add_positions.sql

28 lines
942 B
MySQL
Raw Normal View History

2022-03-07 05:44:43 +00:00
-- +up
CREATE TABLE `positions`
(
`gid` BIGINT UNSIGNED NOT NULL AUTO_INCREMENT,
`strategy` VARCHAR(32) NOT NULL,
`strategy_instance_id` VARCHAR(64) NOT NULL,
2022-03-10 11:00:02 +00:00
`symbol` VARCHAR(20) NOT NULL,
2022-03-07 05:44:43 +00:00
`quote_currency` VARCHAR(10) NOT NULL,
`base_currency` VARCHAR(10) NOT NULL,
-- average_cost is the position average cost
`average_cost` DECIMAL(16, 8) UNSIGNED NOT NULL,
`base` DECIMAL(16, 8) NOT NULL,
`quote` DECIMAL(16, 8) NOT NULL,
2022-03-10 11:00:02 +00:00
`profit` DECIMAL(16, 8) NULL,
2022-03-07 05:44:43 +00:00
`trade_id` BIGINT UNSIGNED NOT NULL,
`traded_at` DATETIME(3) NOT NULL,
PRIMARY KEY (`gid`),
UNIQUE KEY `trade_id` (`trade_id`)
);
-- +down
DROP TABLE IF EXISTS `positions`;