osem-fcy/db/migrate/20130626095459_add_video_id_to_events.rb
2018-04-04 10:28:10 -07:00

8 lines
193 B
Ruby

# frozen_string_literal: true
class AddVideoIdToEvents < ActiveRecord::Migration
def change
add_column :events, :video_id, :string
add_column :events, :video_type, :string
end
end