Skip to content

Instantly share code, notes, and snippets.

@ryzalyusoff
Forked from 6temes/mysql_downgrade.txt
Created June 23, 2018 00:27
Show Gist options
  • Save ryzalyusoff/4d7e0a4a4d3003fc68235135259a9459 to your computer and use it in GitHub Desktop.
Save ryzalyusoff/4d7e0a4a4d3003fc68235135259a9459 to your computer and use it in GitHub Desktop.
Downgrade MySQL version with brew
# Kill rails server and guard
bin/spring stop
brew services stop mysql
brew uninstall mysql
brew install mysql@5.5
brew link mysql@5.5 --force
brew services start mysql@5.5
rbenv uninstall 2.3.3
rbenv install 2.3.3
gem install bundle
gem install rubocop-rspec rubocop scss_lint rails_best_practices # (optional)
bundle install
be rails db:migrate:reset
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment