mirror of
https://github.com/status-im/status-go.git
synced 2025-01-09 22:26:30 +00:00
4143de3816
iterates: #2782
11 lines
318 B
SQL
11 lines
318 B
SQL
CREATE TABLE IF NOT EXISTS chat_identity_social_links (
|
|
chat_id VARCHAR NOT NULL,
|
|
link_text TEXT,
|
|
link_url TEXT,
|
|
UNIQUE(chat_id, link_text) ON CONFLICT REPLACE
|
|
);
|
|
|
|
CREATE TABLE IF NOT EXISTS chat_identity_last_received (
|
|
chat_id VARCHAR NOT NULL PRIMARY KEY ON CONFLICT REPLACE,
|
|
clock_value INT NOT NULL
|
|
); |