Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWilliam Herry <WilliamHerryChina@Gmail.com>2014-09-10 01:55:45 +0400
committerWilliam Herry <WilliamHerryChina@Gmail.com>2014-09-10 01:55:45 +0400
commit276ee454877f66afeec3043745d4c9326e809008 (patch)
tree0e7727b2e7d5c8bda9a4096643a3fab02adea7df /doc/update/mysql_to_postgresql.md
parentbbe50443958a8a7239f4b3f0979060b749624755 (diff)
add bunder step to mysql_to_postgresql doc
Diffstat (limited to 'doc/update/mysql_to_postgresql.md')
-rw-r--r--doc/update/mysql_to_postgresql.md3
1 files changed, 3 insertions, 0 deletions
diff --git a/doc/update/mysql_to_postgresql.md b/doc/update/mysql_to_postgresql.md
index ed72e156efe..695c083d361 100644
--- a/doc/update/mysql_to_postgresql.md
+++ b/doc/update/mysql_to_postgresql.md
@@ -21,6 +21,9 @@ sudo -u git psql -f databasename.psql -d gitlabhq_production
# Rebuild indexes (see below)
+# Install gems for PostgreSQL (note: the line below states '--without ... mysql')
+sudo -u git -H bundle install --without development test mysql --deployment
+
sudo service gitlab start
```