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

11 lines
311 B
Ruby

class CreateResultComments < ActiveRecord::Migration
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