7 lines
175 B
Ruby
7 lines
175 B
Ruby
|
|
class AddVideoToConferences < ActiveRecord::Migration
|
||
|
|
def change
|
||
|
|
add_column :conferences, :media_id, :string
|
||
|
|
add_column :conferences, :media_type, :string
|
||
|
|
end
|
||
|
|
end
|