class CreateRatings < ActiveRecord::Migration def self.up create_table :ratings do |t| t.column :rating, :integer t.column :plugin_id, :integer t.column :user_id, :integer end end def self.down drop_table :ratings end end