mirror of
https://github.com/grassrootseconomics/cic-chain-events.git
synced 2024-11-22 15:56:45 +01:00
13 lines
195 B
MySQL
13 lines
195 B
MySQL
|
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;
|