multica/server/migrations/012_inbox_actor.up.sql
yushen 072ee83ee8 fix(db): renumber inbox_actor migration to resolve 009 conflict
009_inbox_actor conflicted with 009_verification_code, causing
actor_type/actor_id columns to never be added and /api/inbox to 500.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-03-26 15:44:10 +08:00

2 lines
100 B
SQL

ALTER TABLE inbox_item ADD COLUMN actor_type TEXT;
ALTER TABLE inbox_item ADD COLUMN actor_id UUID;