Skip to content
Snippets Groups Projects
Commit 7f9e802c authored by Bartek Wrona's avatar Bartek Wrona
Browse files

Added permissions to create schema to hivemind database role

parent 49369d06
Branches pyup-scheduled-update-2019-04-01
No related tags found
2 merge requests!585Docker support for HAF Hivemind deployment,!584Changes to be delivered to master as 1.27 release
......@@ -9,6 +9,7 @@ BEGIN
EXECUTE 'ALTER DATABASE '||current_database()||' SET join_collapse_limit TO 16';
EXECUTE 'ALTER DATABASE '||current_database()||' SET from_collapse_limit TO 16';
EXECUTE 'GRANT CREATE ON DATABASE '||current_database()||' TO hivemind';
IF __version >= 120000 THEN
RAISE NOTICE 'Disabling a JIT optimization on the current database level...';
......@@ -16,4 +17,3 @@ BEGIN
END IF;
END
$$;
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment