Skip to content

Commit

Permalink
Add migrate_address_names task to 2.11 upgrade task
Browse files Browse the repository at this point in the history
The Solidus 2.11 upgrade task now includes also the rake task
`migrate_address_names`.
  • Loading branch information
spaghetticode committed Mar 8, 2021
1 parent b7ba9ad commit 87203d5
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions core/lib/tasks/upgrade.rake
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,12 @@

namespace :solidus do
namespace :upgrade do
desc "Upgrade Solidus to version 2.11.0"
desc "Upgrade Solidus to version 2.11"
task two_point_eleven: [
'solidus:migrations:migrate_default_billing_addresses_to_address_book:up'
'solidus:migrations:migrate_default_billing_addresses_to_address_book:up',
'solidus:migrations:migrate_address_names:up'
] do
puts "Your Solidus install is ready for Solidus 2.11.0"
puts "Your Solidus install is ready for Solidus 2.11"
end
end
end

0 comments on commit 87203d5

Please sign in to comment.