Files
thoughts/crates/adapters/postgres/migrations/013_also_known_as.sql
Gabriel Kaszewski 1ad02e0806
Some checks failed
test / unit (push) Has been cancelled
test / integration (push) Has been cancelled
lint / lint (push) Has been cancelled
feat: add PATCH /federation/me/also-known-as endpoint
Adds alsoKnownAs column to users table (migration 013), reads it in
the AP actor JSON, and exposes PATCH /federation/me/also-known-as to
set or clear it. Required pre-condition for broadcast_move.
2026-05-28 01:59:35 +02:00

2 lines
63 B
SQL

ALTER TABLE users ADD COLUMN IF NOT EXISTS also_known_as TEXT;