Enabled realtime on table. How to grab change in version control
Pretty much like i said i enabled realtime on one of my tables, and when i did npx supabase db diff -f subscribe_to_jobs it said there were no changes. I need a way to have it in my version control
2 Replies
The table does not have anything associated with realtime on it.
The method of adding a table to a publication is this:
alter publication supabase_realtime add table subscribe_to_jobs;
just tried it and it worked, thanks !