Class: CreateFeatureBoxVotes
- Inherits:
-
ActiveRecord::Migration
- Object
- ActiveRecord::Migration
- CreateFeatureBoxVotes
- Defined in:
- lib/generators/feature_box/templates/migrations/03_create_feature_box_votes.rb
Instance Method Summary collapse
Instance Method Details
#change ⇒ Object
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. end add_index :feature_box_votes, :user_id add_index :feature_box_votes, :suggestion_id end |