ryanto/acts_as_votable

View on GitHub
lib/generators/acts_as_votable/migration/templates/active_record/migration.erb

Summary

Maintainability
Test Coverage
class ActsAsVotableMigration < ActiveRecord::Migration<%= migration_version %>
  def self.up
    create_table :votes do |t|

      t.references :votable, polymorphic: true
      t.references :voter, polymorphic: true

      t.boolean :vote_flag
      t.string :vote_scope
      t.integer :vote_weight

      t.timestamps
    end

    add_index :votes, [:voter_id, :voter_type, :vote_scope]
    add_index :votes, [:votable_id, :votable_type, :vote_scope]
  end

  def self.down
    drop_table :votes
  end
end