bbgo_origin/migrations/sqlite3/20220531013327_margin_repays.sql
2022-05-31 17:16:42 +08:00

22 lines
529 B
SQL

-- +up
CREATE TABLE `margin_repays`
(
`gid` INTEGER PRIMARY KEY AUTOINCREMENT,
`transaction_id` INTEGER NOT NULL,
`exchange` VARCHAR(24) NOT NULL DEFAULT '',
`asset` VARCHAR(24) NOT NULL DEFAULT '',
`isolated_symbol` VARCHAR(24) NOT NULL DEFAULT '',
-- quantity is the quantity of the trade that makes profit
`principle` DECIMAL(16, 8) NOT NULL,
`time` DATETIME(3) NOT NULL
);
-- +down
DROP TABLE IF EXISTS `margin_repays`;