scinote-web/db/migrate/20150716061555_create_step_comments.rb
2016-02-12 16:52:43 +01:00

12 lines
343 B
Ruby

class CreateStepComments < ActiveRecord::Migration
def change
create_table :step_comments do |t|
t.integer :step_id, null: false
t.integer :comment_id, null: false
end
add_foreign_key :step_comments, :steps
add_foreign_key :step_comments, :comments
add_index :step_comments, [:step_id, :comment_id]
end
end