mirror of
https://github.com/status-im/status-go.git
synced 2025-01-09 22:26:30 +00:00
7 lines
198 B
MySQL
7 lines
198 B
MySQL
|
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);
|