diff options
author | Robert Schilling <rschilling@student.tugraz.at> | 2014-09-10 09:13:21 +0200 |
---|---|---|
committer | Robert Schilling <rschilling@student.tugraz.at> | 2014-09-10 09:13:21 +0200 |
commit | f905abc03a22a8bebebd5cbdde645d4f614fab10 (patch) | |
tree | 0e7727b2e7d5c8bda9a4096643a3fab02adea7df | |
parent | bbe50443958a8a7239f4b3f0979060b749624755 (diff) | |
parent | 276ee454877f66afeec3043745d4c9326e809008 (diff) | |
download | gitlab-ce-f905abc03a22a8bebebd5cbdde645d4f614fab10.tar.gz |
Merge pull request #7719 from williamherry/improve/improve_mysql_to_postgresql_doc
add bunder step to mysql_to_postgresql doc
-rw-r--r-- | doc/update/mysql_to_postgresql.md | 3 |
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 ``` |