mirror of
https://github.com/status-im/status-go.git
synced 2025-01-09 14:16:21 +00:00
8 lines
236 B
SQL
8 lines
236 B
SQL
CREATE TABLE IF NOT EXISTS community_encryption_keys_requests (
|
|
community_id BLOB NOT NULL,
|
|
channel_id TEXT,
|
|
requested_at INTEGER NOT NULL,
|
|
requested_count INTEGER NOT NULL,
|
|
PRIMARY KEY (community_id, channel_id)
|
|
);
|