Create role for custom instance user (#7635)

This commit is contained in:
Diego Imbert
2026-01-20 21:54:01 +01:00
committed by GitHub
parent 39a9a77417
commit d514b1be51
2 changed files with 11 additions and 0 deletions

View File

@@ -0,0 +1 @@
-- Add down migration script here

View File

@@ -0,0 +1,10 @@
DO $$
BEGIN
ALTER ROLE custom_instance_user CREATEROLE;
EXCEPTION
WHEN others THEN
RAISE NOTICE 'Error in custom_instance_user migration: %', SQLERRM;
-- Continue without failing the migration
END
$$;