suna/backend/supabase/migrations/20250814145041_project_real...

9 lines
240 B
MySQL
Raw Normal View History

-- Migration: Enable realtime updates for projects table
-- This migration enables realtime subscriptions for the projects table
BEGIN;
-- Enable realtime for projects table
ALTER PUBLICATION supabase_realtime ADD TABLE projects;
COMMIT;