replace deprecated update_attributes with update
This commit is contained in:
parent
eb45a2bf21
commit
3ffdb424d5
28 changed files with 52 additions and 53 deletions
|
|
@ -16,14 +16,14 @@ class RemoveTableArticlePrices < ActiveRecord::Migration[4.2]
|
|||
puts "now copy values of article_prices into new articles-columns..."
|
||||
Article.find(:all).each do |article|
|
||||
price = article.current_price
|
||||
article.update_attributes!(:clear_price => price.clear_price,
|
||||
:gross_price => price.gross_price,
|
||||
:tax => price.tax,
|
||||
:refund => price.refund,
|
||||
:unit_quantity => price.unit_quantity,
|
||||
:order_number => price.order_number,
|
||||
:updated_at => price.updated_on,
|
||||
:created_at => price.updated_on)
|
||||
article.update!(clear_price: price.clear_price,
|
||||
gross_price: price.gross_price,
|
||||
tax: price.tax,
|
||||
refund: price.refund,
|
||||
unit_quantity: price.unit_quantity,
|
||||
order_number: price.order_number,
|
||||
updated_at: price.updated_on,
|
||||
created_at: price.updated_on)
|
||||
end
|
||||
|
||||
puts "delete article_prices, current_price attribute"
|
||||
|
|
|
|||
|
|
@ -47,8 +47,7 @@ class RoadToVersionThree < ActiveRecord::Migration[4.2]
|
|||
Ordergroup.all.each do |ordergroup|
|
||||
contact = ordergroup.users.first
|
||||
if contact
|
||||
ordergroup.update_attributes :contact_person => contact.name,
|
||||
:contact_phone => contact.phone, :contact_address => contact.address
|
||||
ordergroup.update(contact_person: contact.name, contact_phone: contact.phone, contact_address: contact.address)
|
||||
end
|
||||
end
|
||||
remove_column :users, :address
|
||||
|
|
|
|||
|
|
@ -27,7 +27,7 @@ class MoveWeeklyTasks < ActiveRecord::Migration[4.2]
|
|||
task_required_users: task.required_users,
|
||||
task_duration: task.duration
|
||||
}
|
||||
workgroup.update_attributes workgroup_attributes
|
||||
workgroup.update(workgroup_attributes)
|
||||
task_group.tasks.update_all weekly: true
|
||||
end
|
||||
end
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue