aboutsummaryrefslogtreecommitdiffstats
path: root/railties/lib/rails/commands/db
Commit message (Collapse)AuthorAgeFilesLines
* Add rails db:system:change commandGannon McGibbon2019-01-091-0/+20
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.