mirror of https://github.com/kortix-ai/suna.git
enable realtime updates for projects table
This commit is contained in:
parent
76e6761e26
commit
d82f047eff
|
@ -44,4 +44,3 @@ BEGIN
|
|||
RAISE NOTICE 'Marked % templates as Kortix team templates', updated_count;
|
||||
END $$;
|
||||
|
||||
COMMIT;
|
|
@ -0,0 +1,9 @@
|
|||
-- 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;
|
Loading…
Reference in New Issue