README.md in capistrano-rails-1.5.0 vs README.md in capistrano-rails-1.6.0

- old
+ new

@@ -10,11 +10,11 @@ Add these Capistrano gems to your application's Gemfile using `require: false`: ```ruby group :development do gem "capistrano", "~> 3.10", require: false - gem "capistrano-rails", "~> 1.5", require: false + gem "capistrano-rails", "~> 1.6", require: false end ``` Run the following command to install the gems: @@ -57,9 +57,12 @@ # Defaults to :db role set :migration_role, :db # Defaults to the primary :db server set :migration_servers, -> { primary(fetch(:migration_role)) } + +# Defaults to `db:migrate` +set :migration_command, 'db:migrate' # Defaults to false # Skip migration if files in db/migrate were not modified set :conditionally_migrate, true