mirror of
https://github.com/grassrootseconomics/cic-chain-events.git
synced 2025-05-20 22:56:45 +02:00
13 lines
195 B
SQL
13 lines
195 B
SQL
CREATE TABLE IF NOT EXISTS blocks (
|
|
n INT UNIQUE PRIMARY KEY
|
|
);
|
|
|
|
CREATE TABLE syncer_meta (
|
|
lower_bound INT
|
|
);
|
|
|
|
---- create above / drop below ----
|
|
|
|
DROP TABLE syncer_meta;
|
|
DROP TABLE blocks;
|