aboutsummaryrefslogtreecommitdiffstats
path: root/railties/test/commands/db_system_change_test.rb
Commit message (Collapse)AuthorAgeFilesLines
* Revise wording on invalid database error messagesGannon McGibbon2019-01-091-1/+1
|
* Add rails db:system:change commandGannon McGibbon2019-01-091-0/+62
Add `rails db:system:change` command for changing databases. ``` bin/rails db:system:change --to=postgresql force config/database.yml gsub Gemfile ``` The change command copies a template `config/database.yml` with the target database adapter into your app, and replaces your database gem with the target database gem.