Skip to content

Commit 210f9e9

Browse files
committed
Ensure pgmq extension is created only if it does not already exist
1 parent ae5c0f4 commit 210f9e9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

supabase/migrations/20251229120000_steam_sync_queue_system.sql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ ON CONFLICT (key)
3838
modified_at = NOW();
3939

4040
-- 2. PGMQ QUEUE SETUP
41-
CREATE EXTENSION pgmq;
41+
CREATE EXTENSION IF NOT EXISTS pgmq;
4242

4343
-- Create the Steam sync queue
4444
SELECT

0 commit comments

Comments
 (0)