Assorted cleanups

- Remove DataDog
- Remove token_supply table
- Drop from more tables when cleaning DB for tests
This commit is contained in:
Rob Mulholand
2019-03-08 11:35:10 -06:00
parent cdcb90c170
commit 5eff2618ed
9 changed files with 6 additions and 73 deletions
@@ -1,14 +0,0 @@
-- +goose Up
CREATE TABLE token_supply (
id SERIAL,
block_id INTEGER NOT NULL,
supply DECIMAL NOT NULL,
token_address CHARACTER VARYING(66) NOT NULL,
CONSTRAINT blocks_fk FOREIGN KEY (block_id)
REFERENCES blocks (id)
ON DELETE CASCADE
);
-- +goose Down
DROP TABLE token_supply;