Files
old-holivud2/db/migrate/20200327122450_add_broadcast_to_zoom_meetings.rb
2020-05-31 22:38:19 +02:00

6 lines
163 B
Ruby

class AddBroadcastToZoomMeetings < ActiveRecord::Migration[6.0]
def change
add_reference :zoom_meetings, :broadcast, null: true, foreign_key: true
end
end