Class: CreateFeatureBoxVotes

Inherits:
ActiveRecord::Migration
  • Object
show all
Defined in:
lib/generators/feature_box/templates/migrations/03_create_feature_box_votes.rb

Instance Method Summary collapse

Instance Method Details

#changeObject



2
3
4
5
6
7
8
9
10
11
# File 'lib/generators/feature_box/templates/migrations/03_create_feature_box_votes.rb', line 2

def change
  create_table :feature_box_votes do |t|
    t.references :user
    t.references :suggestion

    t.timestamps
  end
  add_index :feature_box_votes, :user_id
  add_index :feature_box_votes, :suggestion_id
end