mirror of
https://github.com/grassrootseconomics/cic-chain-events.git
synced 2024-11-19 06:26:50 +01:00
8 lines
114 B
MySQL
8 lines
114 B
MySQL
|
CREATE TABLE IF NOT EXISTS blocks (
|
||
|
n INT UNIQUE PRIMARY KEY
|
||
|
);
|
||
|
|
||
|
CREATE TABLE syncer_meta (
|
||
|
lower_bound INT
|
||
|
);
|