Files
old-holivud2/db/migrate/20200615131722_remove_broadcast_id_from_zoom_meetings.rb
2020-06-16 17:11:04 +02:00

6 lines
142 B
Ruby

class RemoveBroadcastIdFromZoomMeetings < ActiveRecord::Migration[6.0]
def change
remove_column :zoom_meetings, :broadcast_id
end
end