Skip to content

Commit

Permalink
fix: ignore deprecated realtime publication (#3073)
Browse files Browse the repository at this point in the history
  • Loading branch information
sweatybridge authored Jan 24, 2025
1 parent c45c257 commit dde5a42
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/migration/queries/drop.sql
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ begin
select *
from pg_publication p
where
p.pubname not like 'supabase_realtime%'
p.pubname not like 'supabase_realtime%' and p.pubname not like 'realtime_messages%'
loop
execute format('drop publication if exists %I', rec.pubname);
end loop;
Expand Down

0 comments on commit dde5a42

Please sign in to comment.