summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRémy Coutable <remy@rymai.me>2018-07-23 10:34:05 +0000
committerRémy Coutable <remy@rymai.me>2018-07-23 10:34:05 +0000
commitf6d13ef53aa50541ec0c751156424d7c49bf3322 (patch)
tree8eeccb726beb212fb425eff6f0c1fb9453e1d3e6
parent922650fa007723e3cf34bd606fddab70213c2773 (diff)
parent3d69345c883c163c60e73a885ea77aba5d615ce9 (diff)
downloadgitlab-ce-f6d13ef53aa50541ec0c751156424d7c49bf3322.tar.gz
Merge branch 'docs/add-step-to-install-postgre-gems-mysql_to_postgresql' into 'master'
Docs: Add a step to install Postgresql related Gems before creating the schema See merge request gitlab-org/gitlab-ce!20739
-rw-r--r--doc/update/mysql_to_postgresql.md6
1 files changed, 6 insertions, 0 deletions
diff --git a/doc/update/mysql_to_postgresql.md b/doc/update/mysql_to_postgresql.md
index 0b38cde811d..7c6a14cb104 100644
--- a/doc/update/mysql_to_postgresql.md
+++ b/doc/update/mysql_to_postgresql.md
@@ -200,6 +200,12 @@ sudo apt-get install pgloader
sudo -u git cp config/database.yml.postgresql config/database.yml
sudo -u git -H chmod o-rwx config/database.yml
```
+1. Install Gems related to Postgresql
+
+ ``` bash
+ sudo -u git -H rm .bundle/config
+ sudo -u git -H bundle install --deployment --without development test mysql aws kerberos
+ ```
1. Run the following commands to prepare the schema: