Last active
October 28, 2024 01:07
-
-
Save 6temes/3c52f8a472f61d9676e7218a98812286 to your computer and use it in GitHub Desktop.
Downgrade MySQL version with brew
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Kill rails server and guard | |
bin/spring stop | |
brew services stop mysql | |
brew uninstall mysql | |
brew install [email protected] | |
brew link [email protected] --force | |
brew services start [email protected] | |
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