Databases
Replacing SQLite
Instructions
Switching to another SQL-based database is easy, and the following instructions show you how to switch to MySQL or Postgres in five simple steps.
MySQL
- Replace
adapter: sqlite
withadapter: mysql2
in your config/database.yml file. - Replace
gem 'sqlite*'
withgem 'mysql2'
in your Gemfile. - Run
bundle install
. - Commit and check changes in.
- Rebuild your application.
Postgres
- Replace
adapter: sqlite
withadapter: postgresql
in your config/database.yml file. - Replace
gem 'sqlite*'
withgem 'pg'
in your Gemfile. - Run
bundle install
. - Commit and check changes in.
- Rebuild your application.
More information about databases supported by Cloud 66.
Pardon the interruption, but we have to do this.
Cloud 66 uses cookies to make our site work and also for analytics and advertising purposes. You can learn more about how we use cookies in our Privacy Policy.Cloud 66 uses cookies to make our site work and also for analytics and advertising purposes. You can learn more about how we use cookies in our Privacy Policy.