summaryrefslogtreecommitdiff
path: root/doc/update/mysql-to-postgresql.md
diff options
context:
space:
mode:
authordosire <sytses@gmail.com>2014-03-31 18:23:10 +0200
committerdosire <sytses@gmail.com>2014-03-31 18:23:10 +0200
commitf6189a9f07607628d02c3660496d50c57dcc226b (patch)
tree47950cd5ad7330d2d0569938d6cfc764c645c576 /doc/update/mysql-to-postgresql.md
parent83941ca2080432938cfcd8e4de9b8d2e616af09e (diff)
downloadgitlab-ce-f6189a9f07607628d02c3660496d50c57dcc226b.tar.gz
Use underscores in doc filename like elsewhere.
Diffstat (limited to 'doc/update/mysql-to-postgresql.md')
-rw-r--r--doc/update/mysql-to-postgresql.md9
1 files changed, 0 insertions, 9 deletions
diff --git a/doc/update/mysql-to-postgresql.md b/doc/update/mysql-to-postgresql.md
deleted file mode 100644
index 9a324545eb0..00000000000
--- a/doc/update/mysql-to-postgresql.md
+++ /dev/null
@@ -1,9 +0,0 @@
-# Use the shell commands below to convert a MySQL GitLab database to a PostgreSQL one.
-
-```
-git clone https://github.com/lanyrd/mysql-postgresql-converter.git
-cd mysql-postgresql-converter
-mysqldump --compatible=postgresql --default-character-set=utf8 -r databasename.mysql -u root gitlabhq_production
-python db_converter.py databasename.mysql databasename.psql
-psql -f databasename.psql -d gitlabhq_production
-```