mirror of
https://github.com/status-im/status-go.git
synced 2025-02-06 11:56:01 +00:00
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
|
|
);
|