osem-fcy/db/migrate/20130626095459_add_video_id_to_events.rb

9 lines
193 B
Ruby
Raw Normal View History

# frozen_string_literal: true
2013-06-26 12:34:47 +02:00
class AddVideoIdToEvents < ActiveRecord::Migration
def change
add_column :events, :video_id, :string
add_column :events, :video_type, :string
end
end