diff options
author | Yorick Peterse <yorickpeterse@gmail.com> | 2016-03-11 17:59:51 +0100 |
---|---|---|
committer | Yorick Peterse <yorickpeterse@gmail.com> | 2016-03-11 17:59:51 +0100 |
commit | 25c2349200153db914ab498bb4b14099a79db01a (patch) | |
tree | 707a717bc53675fe0ed678c04b9a63f8e9ceb6c1 /doc/update | |
parent | 75ba7d5d4f13e4c4e4f53ff03a61a0f447ea0ce2 (diff) | |
download | gitlab-ce-25c2349200153db914ab498bb4b14099a79db01a.tar.gz |
Added 8.6 upgrade guide for PostgreSQL users
Diffstat (limited to 'doc/update')
-rw-r--r-- | doc/update/8.5-to-8.6.md | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/doc/update/8.5-to-8.6.md b/doc/update/8.5-to-8.6.md index e42f691cd32..a8167b2cf0b 100644 --- a/doc/update/8.5-to-8.6.md +++ b/doc/update/8.5-to-8.6.md @@ -105,6 +105,23 @@ via [/etc/default/gitlab]. [Apache templates]: https://gitlab.com/gitlab-org/gitlab-recipes/tree/master/web-server/apache [/etc/default/gitlab]: https://gitlab.com/gitlab-org/gitlab-ce/blob/8-6-stable/lib/support/init.d/gitlab.default.example#L37 +### 8. Updates for PostgreSQL Users + +Starting with 8.6 users using GitLab in combination with PostgreSQL are required +to have the "pg_trgm" extension enabled for all GitLab databases. If you're +using GitLab's Omnibus packages there's nothing you'll need to do manually as +this extension is enabled automatically. Users who install GitLab without using +Omnibus (e.g. by building from source) have to enable this extension manually. +To enable this extension run the following SQL command as a PostgreSQL super +user for _every_ GitLab database: + + CREATE EXTENSION IF NOT EXISTS pg_trgm; + +Certain operating systems might require the installation of extra packages for +this extension to be available. For example, users using Ubuntu will have to +install the "postgresql-contrib" package in order for this extension to be +available. + #### Init script Ensure you're still up-to-date with the latest init script changes: |