scinote-web/db/migrate/20150716060140_create_result_comments.rb
2017-06-30 10:23:28 +02:00

11 lines
316 B
Ruby

class CreateResultComments < ActiveRecord::Migration[4.2]
def change
create_table :result_comments do |t|
t.integer :result_id, null: false
t.integer :comment_id, null: false
end
add_foreign_key :result_comments, :results
add_index :result_comments, [:result_id, :comment_id]
end
end