Skip to content

Commit 0fc11ec

Browse files
committed
fix: uninstall supabase-dbdev in migration step
1 parent c6930dc commit 0fc11ec

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

supabase/migrations/20231207073048_dbdev_supports_new_package_names.sql

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -281,8 +281,9 @@ Requires:
281281
*/
282282
create extension if not exists http with schema extensions;
283283
create extension if not exists pg_tle;
284-
-- drop dbdev with older naming schem if present
284+
-- drop dbdev with older naming scheme if present
285285
drop extension if exists "supabase-dbdev";
286+
select pgtle.uninstall_extension_if_exists('supabase-dbdev');
286287
drop extension if exists "supabase@dbdev";
287288
select pgtle.uninstall_extension_if_exists('supabase@dbdev');
288289
select

0 commit comments

Comments
 (0)