Class: CreateFeatureBoxComments

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

Instance Method Summary collapse

Instance Method Details

#changeObject



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

def change
  create_table :feature_box_comments do |t|
    t.references :user
    t.references :suggestion
    t.text :text, :null => false

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