mirror of
https://github.com/block/buzz.git
synced 2026-08-18 06:50:31 +02:00
Signed-off-by: npub12gtutshhh76rx0jx697f32f9tffd4hhp3hx58fp4x6u4uemkm7sqf8f757 <5217c5c2f7bfb4333e46d17c98a9255a52dadee18dcd43a43536b95e6776dfa0@sprout-oss.stage.blox.sqprod.co> Signed-off-by: Tyler Longwell <tlongwell@squareup.com> Co-authored-by: npub12gtutshhh76rx0jx697f32f9tffd4hhp3hx58fp4x6u4uemkm7sqf8f757 <5217c5c2f7bfb4333e46d17c98a9255a52dadee18dcd43a43536b95e6776dfa0@sprout-oss.stage.blox.sqprod.co> Co-authored-by: klopez4212 <klopez4212@gmail.com> Co-authored-by: npub1qyvc0c5kl4gqv2fd97fsk46tu378sqgy35vc83rvgfwne90sel7s0ed67d <011987e296fd5006292d2f930b574be47c7801048d1983c46c425d3c95f0cffd@sprout-oss.stage.blox.sqprod.co>
13 lines
607 B
SQL
13 lines
607 B
SQL
-- Durable evidence of the policy version accepted when an invite claim grants
|
|
-- relay membership. Rows are scoped to the same community and member identity
|
|
-- as relay_members and are deleted with that membership.
|
|
CREATE TABLE join_policy_acceptances (
|
|
community_id UUID NOT NULL,
|
|
pubkey TEXT NOT NULL,
|
|
policy_version TEXT NOT NULL CHECK (length(policy_version) = 64),
|
|
accepted_at TIMESTAMPTZ NOT NULL DEFAULT now(),
|
|
PRIMARY KEY (community_id, pubkey, policy_version),
|
|
FOREIGN KEY (community_id, pubkey)
|
|
REFERENCES relay_members (community_id, pubkey) ON DELETE CASCADE
|
|
);
|