From c6de3ce47b4cf27bea09d1f132c292311e89ecde Mon Sep 17 00:00:00 2001 From: Andrey Antukh Date: Mon, 20 Jul 2026 14:05:04 +0200 Subject: [PATCH] :paperclip: Do not drop uuid-ossp extension on migrations Requires specific permissions --- .../sql/0152-improve-uuid-defaults-and-drop-extension.sql | 2 -- 1 file changed, 2 deletions(-) diff --git a/backend/src/app/migrations/sql/0152-improve-uuid-defaults-and-drop-extension.sql b/backend/src/app/migrations/sql/0152-improve-uuid-defaults-and-drop-extension.sql index c389e9430d..ae0fe29372 100644 --- a/backend/src/app/migrations/sql/0152-improve-uuid-defaults-and-drop-extension.sql +++ b/backend/src/app/migrations/sql/0152-improve-uuid-defaults-and-drop-extension.sql @@ -27,5 +27,3 @@ ALTER TABLE team_invitation ALTER COLUMN id SET DEFAULT gen_random_uuid ALTER TABLE team_profile_rel ALTER COLUMN id SET DEFAULT gen_random_uuid(); ALTER TABLE team_project_profile_rel ALTER COLUMN id SET DEFAULT gen_random_uuid(); ALTER TABLE usage_quote ALTER COLUMN id SET DEFAULT gen_random_uuid(); - -DROP EXTENSION IF EXISTS "uuid-ossp";