ipld-eth-server/db/migrations/00035_create_receipt_cids_table.sql

14 lines
496 B
MySQL
Raw Normal View History

2019-04-15 16:30:41 +00:00
-- +goose Up
CREATE TABLE public.receipt_cids (
id SERIAL PRIMARY KEY,
tx_id INTEGER NOT NULL REFERENCES transaction_cids (id) ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED,
2019-04-30 17:48:31 +00:00
cid TEXT NOT NULL,
2019-06-20 15:59:10 +00:00
contract VARCHAR(66),
topic0s VARCHAR(66)[],
topic1s VARCHAR(66)[],
topic2s VARCHAR(66)[],
topic3s VARCHAR(66)[]
2019-04-15 16:30:41 +00:00
);
-- +goose Down
DROP TABLE public.receipt_cids;