Skip to content

Commit 0033f86

Browse files
authored
Merge pull request #1116 from trycompai/main
[comp] Production Deploy
2 parents 24b637f + 1f8b158 commit 0033f86

1 file changed

Lines changed: 7 additions & 0 deletions

File tree

  • packages/db/prisma/migrations/20250711201749_update_retool_role_to_edit_had_call_column_in_organization_table
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
DO $$
2+
BEGIN
3+
IF EXISTS (SELECT 1 FROM pg_roles WHERE rolname = 'retool_write') THEN
4+
GRANT UPDATE ("hadCall") ON "Organization" TO retool_write;
5+
END IF;
6+
END
7+
$$;

0 commit comments

Comments
 (0)