mirror of
https://github.com/LaCasemate/fab-manager.git
synced 2024-11-29 10:24:20 +01:00
15 lines
351 B
Ruby
15 lines
351 B
Ruby
# frozen_string_literal:true
|
|
|
|
class AddRecurrenceIdToEvent < ActiveRecord::Migration[4.2]
|
|
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
|