summaryrefslogtreecommitdiff
path: root/doc/update/mysql-to-postgresql.md
diff options
context:
space:
mode:
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
-```