mirror of
https://github.com/LaCasemate/fab-manager.git
synced 2024-11-29 10:24:20 +01:00
13 lines
316 B
Ruby
13 lines
316 B
Ruby
class AddRecurrenceIdToEvent < ActiveRecord::Migration
|
|
def change
|
|
add_column :events, :recurrence_id, :integer
|
|
add_index :events, :recurrence_id
|
|
|
|
Event.all.each do |e|
|
|
if e.respond_to? :recurrence_id and !e.recurrence_id?
|
|
e.update_columns(recurrence_id: e.id)
|
|
end
|
|
end
|
|
end
|
|
end
|