summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDouwe Maan <douwe@gitlab.com>2015-08-06 09:12:51 +0000
committerDouwe Maan <douwe@gitlab.com>2015-08-06 09:12:51 +0000
commitfff36a8b8965e4bddd8020caf5072e79bf131a74 (patch)
treef94b2e2f800b9fd508852468f6c5d0abae2527dd
parentc6cbee846cd83c7b3a37e0565a0d994e0777d81a (diff)
parentc90e592e91137c6fe5f9e4fb2e07443f5fb9f854 (diff)
downloadgitlab-ce-fff36a8b8965e4bddd8020caf5072e79bf131a74.tar.gz
Merge branch 'fix-link-to-guide' into 'master'
Replace relative url with full path, remove old reference for indexes See merge request !1091
-rw-r--r--doc/update/mysql_to_postgresql.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/update/mysql_to_postgresql.md b/doc/update/mysql_to_postgresql.md
index 26605c7c3a3..a596ea38456 100644
--- a/doc/update/mysql_to_postgresql.md
+++ b/doc/update/mysql_to_postgresql.md
@@ -1,5 +1,5 @@
# Migrating GitLab from MySQL to Postgres
-*Make sure you view this [guide from the `master` branch](../../../master/doc/update/mysql_to_postgresql.md) for the most up to date instructions.*
+*Make sure you view this [guide from the `master` branch](https://gitlab.com/gitlab-org/gitlab-ce/blob/master/doc/update/mysql_to_postgresql.md#migrating-gitlab-from-mysql-to-postgres) for the most up to date instructions.*
If you are replacing MySQL with Postgres while keeping GitLab on the same server all you need to do is to export from MySQL, convert the resulting SQL file, and import it into Postgres. If you are also moving GitLab to another server, or if you are switching to omnibus-gitlab, you may want to use a GitLab backup file. The second part of this documents explains the procedure to do this.
@@ -70,5 +70,5 @@ sudo -u git -H gzip db/database.sql
sudo -u git -H tar rf TIMESTAMP_gitlab_backup.tar db/database.sql.gz
# Done! TIMESTAMP_gitlab_backup.tar can now be restored into a Postgres GitLab
-# installation. Remember to recreate the indexes after the import.
+# installation.
```