mirror of
https://github.com/windmill-labs/windmill.git
synced 2026-08-18 16:02:10 +00:00
11 lines
224 B
SQL
11 lines
224 B
SQL
|
|
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
|
|
$$;
|