Now mysql is officially supported by gitlabhq. Follow next steps to migrate to mysql
- Get latest code
- Install mysql
- Save data -
bundle exec rake db:data:dump RAILS_ENV=production
- Change config to mysql using
database.yml.example
- Setup db -
bundle exec rake db:setup RAILS_ENV=production
- Restore old data -
bundle exec rake db:data:load RAILS_ENV=production