remove is_buyer and is_maker columns

This commit is contained in:
c9s 2020-11-03 15:32:16 +08:00
parent 5a566c9c6e
commit bcff4de321

View File

@ -13,8 +13,6 @@ CREATE TABLE `orders`
`executed_quantity` DECIMAL(16, 8) UNSIGNED NOT NULL, `executed_quantity` DECIMAL(16, 8) UNSIGNED NOT NULL,
`fee` DECIMAL(16, 8) UNSIGNED NOT NULL, `fee` DECIMAL(16, 8) UNSIGNED NOT NULL,
`fee_currency` VARCHAR(4) NOT NULL, `fee_currency` VARCHAR(4) NOT NULL,
`is_buyer` BOOLEAN NOT NULL DEFAULT FALSE,
`is_maker` BOOLEAN NOT NULL DEFAULT FALSE,
`side` VARCHAR(4) NOT NULL DEFAULT '', `side` VARCHAR(4) NOT NULL DEFAULT '',
`created_at` DATETIME(6) NOT NULL, `created_at` DATETIME(6) NOT NULL,