Update one column to value of another in Rails migration
As gregdan wrote, you can use update_all
. You can do something like this:
Model.where(...).update_all('updated_at = created_at')
The first portion is your typical set of conditions. The last portion says how to make the assignments. This will yield an UPDATE
statement, at least in Rails 4.
You can directly run following command to your rails console
ActiveRecord::Base.connection.execute("UPDATE TABLE_NAME SET COL2 = COL1")
For example: I want to update sku of my items table with remote_id of items tables. the command will be as following:ActiveRecord::Base.connection.execute("UPDATE items SET sku = remote_id")
I would create a migration
rails g migration set_updated_at_values
and inside it write something like:
class SetUpdatedAt < ActiveRecord::Migration
def self.up
Yourmodel.update_all("updated_at=created_at")
end
def self.down
end
end
This way you achieve two things
- this is a repeatable process, with each possible deploy (where needed) it is executed
- this is efficient. I can't think of a more rubyesque solution (that is as efficient).
Note: you could also run raw sql inside a migration, if the query gets too hard to write using activerecord. Just write the following:
Yourmodel.connection.execute("update your_models set ... <complicated query> ...")
You can use update_all which works very similar to raw SQL. That's all options you have.
BTW personally I do not pay that much attention to migrations. Sometimes raw SQL is really best solution. Generally migrations code isn't reused. This is one time action so I don't bother about code purity.