mirror of
https://github.com/status-im/status-go.git
synced 2025-01-09 14:16:21 +00:00
ed5a5c154d
Move to a monorepo structure with submodules - Rename status-protocol-go to status-go/protocol
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);
|