Add video metadata to events

This commit is contained in:
Henne Vogelsang 2013-06-26 12:34:47 +02:00 committed by Henne Vogelsang
parent dc0560b848
commit 94e014ac40
3 changed files with 10 additions and 2 deletions

View file

@ -0,0 +1,6 @@
class AddVideoIdToEvents < ActiveRecord::Migration
def change
add_column :events, :video_id, :string
add_column :events, :video_type, :string
end
end