Postgresql conversion script.

This commit is contained in:
dosire 2014-03-17 14:55:56 +01:00
parent 0aa389b491
commit 70994c348d
1 changed files with 9 additions and 0 deletions

View File

@ -0,0 +1,9 @@
# 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
```