mirror of
https://github.com/status-im/status-go.git
synced 2025-01-09 14:16:21 +00:00
17 lines
334 B
MySQL
17 lines
334 B
MySQL
|
CREATE TABLE IF NOT EXISTS social_links_settings (
|
||
|
link_text TEXT PRIMARY KEY ON CONFLICT REPLACE,
|
||
|
link_url TEXT
|
||
|
);
|
||
|
|
||
|
INSERT INTO social_links_settings (
|
||
|
link_text,
|
||
|
link_url
|
||
|
)
|
||
|
VALUES
|
||
|
("__twitter", NULL),
|
||
|
("__personal_site", NULL),
|
||
|
("__github", NULL),
|
||
|
("__youtube", NULL),
|
||
|
("__discord", NULL),
|
||
|
("__telegram", NULL);
|