ipld-eth-server/db/migrations/1528317902_create_token_supply_table.up.sql

10 lines
261 B
MySQL
Raw Normal View History

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
)