voteable
This commit is contained in:
27
db/migrate/20140719200449_acts_as_votable_migration.rb
Normal file
27
db/migrate/20140719200449_acts_as_votable_migration.rb
Normal file
@@ -0,0 +1,27 @@
|
||||
class ActsAsVotableMigration < ActiveRecord::Migration
|
||||
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
|
||||
|
||||
if ActiveRecord::VERSION::MAJOR < 4
|
||||
add_index :votes, [:votable_id, :votable_type]
|
||||
add_index :votes, [:voter_id, :voter_type]
|
||||
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
|
||||
Reference in New Issue
Block a user