mirror of
https://github.com/status-im/status-go.git
synced 2025-01-09 06:12:55 +00:00
7e25a6125f
closes: #2812
8 lines
204 B
SQL
8 lines
204 B
SQL
CREATE TABLE IF NOT EXISTS communities_requests_to_leave (
|
|
id BLOB NOT NULL,
|
|
public_key VARCHAR NOT NULL,
|
|
clock INT NOT NULL,
|
|
community_id BLOB NOT NULL,
|
|
PRIMARY KEY (id) ON CONFLICT REPLACE
|
|
);
|