mirror of
https://github.com/status-im/status-go.git
synced 2025-02-08 12:54:37 +00:00
7 lines
198 B
SQL
7 lines
198 B
SQL
CREATE TABLE contact_code_config (
|
|
unique_constraint varchar(1) NOT NULL PRIMARY KEY DEFAULT 'X',
|
|
last_published INTEGER NOT NULL DEFAULT 0
|
|
);
|
|
|
|
INSERT INTO contact_code_config VALUES ('X', 0);
|