From bcff4de32130b37910a541e3f54e25d9717a5617 Mon Sep 17 00:00:00 2001 From: c9s Date: Tue, 3 Nov 2020 15:32:16 +0800 Subject: [PATCH] remove is_buyer and is_maker columns --- migrations/20201102222546_orders.sql | 2 -- 1 file changed, 2 deletions(-) diff --git a/migrations/20201102222546_orders.sql b/migrations/20201102222546_orders.sql index a5d0243eb..7285d347f 100644 --- a/migrations/20201102222546_orders.sql +++ b/migrations/20201102222546_orders.sql @@ -13,8 +13,6 @@ CREATE TABLE `orders` `executed_quantity` DECIMAL(16, 8) UNSIGNED NOT NULL, `fee` DECIMAL(16, 8) UNSIGNED 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 '', `created_at` DATETIME(6) NOT NULL,