chainsyncer/sql/sqlite/2.sql

12 lines
334 B
MySQL
Raw Normal View History

2021-02-17 12:44:35 +01:00
CREATE TABLE IF NOT EXISTS chain_sync_filter (
id integer primary key autoincrement not null,
chain_sync_id integer not null,
2021-02-17 12:44:35 +01:00
flags bytea default null,
flags_start bytea default null,
count integer not null default 0,
digest bytea not null,
2021-02-17 12:44:35 +01:00
CONSTRAINT fk_chain_sync
FOREIGN KEY(chain_sync_id)
REFERENCES chain_sync(id)
);