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

10 lines
342 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,
topic0s VARCHAR(66)[]
2019-04-15 16:30:41 +00:00
);
-- +goose Down
DROP TABLE public.receipt_cids;