feat(federation): federation_attach_proofs table (re-attach spec §3.1)

This commit is contained in:
Jannis Braun
2026-07-03 01:36:30 +02:00
parent 70a68ebe1e
commit 669d80d7c7
4 changed files with 3875 additions and 0 deletions
@@ -0,0 +1,8 @@
CREATE TABLE `federation_attach_proofs` (
`token` text PRIMARY KEY NOT NULL,
`home_user_id` text NOT NULL,
`target_domain` text NOT NULL,
`created_at` integer NOT NULL,
`expires_at` integer NOT NULL,
`used_at` integer
);