ipld-eth-server/db/migrations/00007_create_full_sync_logs_table.sql
Rob Mulholand 3693ed905f Rename logs to full sync logs
- Enable creating new table for logs used in event watching based on
  header sync
2019-08-28 09:11:06 -05:00

20 lines
420 B
SQL

-- +goose Up
CREATE TABLE full_sync_logs (
id SERIAL PRIMARY KEY,
block_number BIGINT,
address VARCHAR(66),
tx_hash VARCHAR(66),
index BIGINT,
topic0 VARCHAR(66),
topic1 VARCHAR(66),
topic2 VARCHAR(66),
topic3 VARCHAR(66),
data TEXT,
CONSTRAINT full_sync_log_uc UNIQUE (block_number, index)
);
-- +goose Down
DROP TABLE full_sync_logs;