mirror of
https://github.com/status-im/status-go.git
synced 2025-01-11 15:14:52 +00:00
526e3d74f1
* chore: move profile showcase structures to the indentity package * feat: implement proof of membership for unecrypted communities * feat: implement proof of membership for encrypted communties with grants
6 lines
147 B
SQL
6 lines
147 B
SQL
CREATE TABLE IF NOT EXISTS community_grants (
|
|
community_id TEXT PRIMARY KEY NOT NULL,
|
|
grant TEXT DEFAULT "",
|
|
clock INT NOT NULL DEFAULT 0
|
|
);
|