mirror of https://github.com/kortix-ai/suna.git
9 lines
240 B
MySQL
9 lines
240 B
MySQL
|
-- 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;
|