Class: CreateVotesTable

Inherits:
ActiveRecord::Migration
  • Object
show all
Defined in:
lib/generators/social_engine/install/templates/create_votes_table.rb

Class Method Summary collapse

Class Method Details

.downObject



17
18
19
20
# File 'lib/generators/social_engine/install/templates/create_votes_table.rb', line 17

def self.down
  remove_index :votes, :name=> :votes_index
  drop_table :votes
end

.upObject



2
3
4
5
6
7
8
9
10
11
12
13
14
15
# File 'lib/generators/social_engine/install/templates/create_votes_table.rb', line 2

def self.up
  create_table :votes, :force => true do |t|
    t.string :voteable_type
    t.integer :voteable_id
    t.integer :user_id
    t.integer :value
    t.string :ip_address
    t.string :session_hash
    t.string :browser_fingerprint            
    t.timestamps
  end
  
  add_index :votes, [:voteable_type, :voteable_id, :ip_address, :browser_fingerprint], :name => "votes_index", :unique => false
end