Add contracts table / start building out watch contracts

This commit is contained in:
Matt Krump
2017-11-09 15:06:01 -06:00
parent 84205a21ea
commit 30fadffb14
11 changed files with 129 additions and 6 deletions
@@ -0,0 +1 @@
DROP TABLE contracts
@@ -0,0 +1,5 @@
CREATE TABLE contracts
(
contract_id SERIAL PRIMARY KEY,
contract_hash VARCHAR(66)
)