Merge pull request #69 from 8thlight/watch_contract

* Add contracts table / start building out watch contracts
This commit is contained in:
Matt K
2017-11-13 10:55:55 -06:00
committed by GitHub
11 changed files with 130 additions and 7 deletions
@@ -0,0 +1 @@
DROP TABLE watched_contracts
@@ -0,0 +1,5 @@
CREATE TABLE watched_contracts
(
contract_id SERIAL PRIMARY KEY,
contract_hash VARCHAR(66)
)