Files
9minutes/db/migrate/20110606000240_create_youtube_video_ratings.rb
2011-06-06 02:25:25 +02:00

16 lines
311 B
Ruby

class CreateYoutubeVideoRatings < ActiveRecord::Migration
def self.up
create_table :youtube_video_ratings do |t|
t.string :search_query
t.string :video_id
t.integer :rating, :default => 0
t.timestamps
end
end
def self.down
drop_table :youtube_video_ratings
end
end