class CreateVotes < ActiveRecord::Migration
  def self.up
    create_table :votes do |t|
      t.column :object_id, :integer
      t.column :object_type, :string
      t.column :user_id, :integer
    end
  end

  def self.down
    drop_table :votes
  end
end
