Skip to content
Snippets Groups Projects
Unverified Commit 5e805594 authored by Praveen Arimbrathodiyil's avatar Praveen Arimbrathodiyil
Browse files

Create btree_gist extension in postgres database

parent 735863d1
No related branches found
No related tags found
No related merge requests found
......@@ -314,6 +314,8 @@ case "$1" in
# enable the pg_trgm extension
runuser -u postgres -- sh -c "psql -d gitlab_production -c \"CREATE EXTENSION IF NOT EXISTS pg_trgm;\""
# enable the btree_gist extension
runuser -u postgres -- sh -c "psql -d gitlab_production -c \"CREATE EXTENSION IF NOT EXISTS btree_gist;\""
# Allow gitlab user to create schema
runuser -u postgres -- sh -c "psql -c \"GRANT CREATE ON database gitlab_production TO ${gitlab_user};\""
......
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