Flop deal (#39)

*Refactor deal transformer to take in several contract addresses
* Add flop address to deal transformer
This commit is contained in:
Elizabeth
2018-09-27 10:12:29 -05:00
committed by GitHub
parent 369939ad84
commit b0cd852aa3
66 changed files with 145 additions and 137 deletions
@@ -0,0 +1,2 @@
ALTER TABLE maker.deal
DROP COLUMN contract_address;
@@ -0,0 +1,2 @@
ALTER TABLE maker.deal
ADD COLUMN contract_address VARCHAR;
+2 -1
View File
@@ -105,7 +105,8 @@ CREATE TABLE maker.deal (
header_id integer NOT NULL,
bid_id numeric NOT NULL,
tx_idx integer NOT NULL,
raw_log jsonb
raw_log jsonb,
contract_address character varying
);