chainsyncer/sql/sqlite/2.sql

12 lines
337 B
MySQL
Raw Normal View History

2021-02-17 12:44:35 +01:00
CREATE TABLE IF NOT EXISTS chain_sync_filter (
2021-04-04 15:03:58 +02:00
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,
2021-04-04 15:03:58 +02:00
flags_start bytea default null,
count integer not null default 0,
digest char(64) not null,
2021-02-17 12:44:35 +01:00
CONSTRAINT fk_chain_sync
FOREIGN KEY(chain_sync_id)
REFERENCES chain_sync(id)
);