I have an events table and sessions table. Events has_many sessions, this is the association. Now I want to move the time_zone column from the sessions table to events table only. So how do I do this with help of migrations. How do I move the existing records for time_zone in sessions table to events table?
Update column with data in rails migration
7.3k Views Asked by Nikhil At
2
First, you need to be sure that sessions associated with the same event have the same time zone. You can do this with:
This will return a hash mapping an
event_id
to the number of time zones associated with it. This number should always be one.Second, I recommend that you first add
events.time_zone
and start using it and removesessions.time_zone
in a separate migration after the new code has been in production for some time and is proved to work.Third, the migration to add
events.time_zone
should look like this (I added some comments for clarity):Note that I redefined models in the migration. It's crucial to do so because:
Once you're sure your changes work as expected you can remove
sessions.time_zone
. If something goes awry you can simply roll back the above migration and restore a working version easily.