Files
Toot-Worker/migrations/0005_actor_local_id.sql
2026-05-14 14:19:23 +08:00

6 lines
280 B
SQL

-- Remote actors need a slash-free local id so Mastodon API paths like
-- /api/v1/accounts/:id/follow can target them without URL-encoding "/".
ALTER TABLE actor_cache ADD COLUMN local_id TEXT;
CREATE UNIQUE INDEX IF NOT EXISTS idx_actor_cache_local_id ON actor_cache(local_id);