Files
CRM_ENVR/database/migrations/010_chat_notifications.sql
T
2026-06-26 14:24:59 +02:00

5 lines
274 B
SQL

ALTER TABLE notifications ADD COLUMN IF NOT EXISTS context_id UUID;
ALTER TABLE notifications ADD COLUMN IF NOT EXISTS context_type VARCHAR(50);
CREATE INDEX IF NOT EXISTS idx_notifications_context ON notifications(context_type, context_id) WHERE context_type IS NOT NULL;