mirror of
https://github.com/status-im/status-go.git
synced 2025-01-09 06:12:55 +00:00
4143de3816
iterates: #2782
17 lines
334 B
SQL
17 lines
334 B
SQL
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);
|