6 lines
139 B
Ruby
6 lines
139 B
Ruby
class AddLiveMeetingUrlToProjects < ActiveRecord::Migration[6.0]
|
|
def change
|
|
add_column :projects, :live_meeting_url, :text
|
|
end
|
|
end
|