6 lines
142 B
Ruby
6 lines
142 B
Ruby
|
|
class RemoveBroadcastIdFromZoomMeetings < ActiveRecord::Migration[6.0]
|
||
|
|
def change
|
||
|
|
remove_column :zoom_meetings, :broadcast_id
|
||
|
|
end
|
||
|
|
end
|