diff options
author | Robert Schilling <rschilling@student.tugraz.at> | 2015-02-28 23:13:08 +0100 |
---|---|---|
committer | Robert Schilling <rschilling@student.tugraz.at> | 2015-02-28 23:13:08 +0100 |
commit | 3678b64b4aa9a1c4e64ef381ef6569ad917b4f19 (patch) | |
tree | 9b6fc958b3a99427aca1e7fcc488934f50681f0b /doc/update/mysql_to_postgresql.md | |
parent | e45811c12ee5ca6b84fdc001e9428dbd8d5728a6 (diff) | |
parent | 692bb679d0ade7401e6a422e2faeb04b63bd23c2 (diff) | |
download | gitlab-ce-3678b64b4aa9a1c4e64ef381ef6569ad917b4f19.tar.gz |
Merge pull request #8758 from bbodenmiller/patch-3
use gitlab branch of mysql-postgresql-converter
Diffstat (limited to 'doc/update/mysql_to_postgresql.md')
-rw-r--r-- | doc/update/mysql_to_postgresql.md | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/doc/update/mysql_to_postgresql.md b/doc/update/mysql_to_postgresql.md index 6af940cca36..18dc101412a 100644 --- a/doc/update/mysql_to_postgresql.md +++ b/doc/update/mysql_to_postgresql.md @@ -12,7 +12,7 @@ sudo service gitlab stop # Update /home/git/gitlab/config/database.yml -git clone https://github.com/gitlabhq/mysql-postgresql-converter.git +git clone https://github.com/gitlabhq/mysql-postgresql-converter.git -b gitlab cd mysql-postgresql-converter mysqldump --compatible=postgresql --default-character-set=utf8 -r databasename.mysql -u root gitlabhq_production -p python db_converter.py databasename.mysql databasename.psql @@ -39,7 +39,7 @@ On non-omnibus installations (distributed using Git) we retrieve the index decla ``` # Clone the database converter on your Postgres-backed GitLab server cd /tmp -git clone https://github.com/gitlabhq/mysql-postgresql-converter.git +git clone https://github.com/gitlabhq/mysql-postgresql-converter.git -b gitlab cd /home/git/gitlab @@ -60,7 +60,7 @@ On omnibus-gitlab we need to get the index declarations from a file called `sche ``` # Clone the database converter on your Postgres-backed GitLab server cd /tmp -/opt/gitlab/embedded/bin/git clone https://github.com/gitlabhq/mysql-postgresql-converter.git +/opt/gitlab/embedded/bin/git clone https://github.com/gitlabhq/mysql-postgresql-converter.git -b gitlab cd /tmp/mysql-postgresql-converter # Download schema.rb.bundled if necessary @@ -98,7 +98,7 @@ cd tmp/backups/postgresql sudo -u git -H mysqldump --compatible=postgresql --default-character-set=utf8 -r gitlabhq_production.mysql -u root gitlabhq_production -p # Clone the database converter -sudo -u git -H git clone https://github.com/gitlabhq/mysql-postgresql-converter.git +sudo -u git -H git clone https://github.com/gitlabhq/mysql-postgresql-converter.git -b gitlab # Convert gitlabhq_production.mysql sudo -u git -H mkdir db |