Fixes [notifRealtime] CHANNEL_ERROR — table was not in supabase_realtime publication, so postgres_changes events never arrived. Added by backyard. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
6 lines
317 B
SQL
6 lines
317 B
SQL
-- Enable Supabase Realtime for notifications table
|
|
-- Fixes CHANNEL_ERROR in notifRealtime subscription:
|
|
-- rebreak.notifications was not part of supabase_realtime publication,
|
|
-- causing postgres_changes subscriptions to fail with CHANNEL_ERROR.
|
|
ALTER PUBLICATION supabase_realtime ADD TABLE rebreak.notifications;
|