scinote-web/db/migrate/20150716120659_create_sample_comments.rb

12 lines
364 B
Ruby
Raw Normal View History

2017-06-30 16:23:28 +08:00
class CreateSampleComments < ActiveRecord::Migration[4.2]
2016-02-12 23:52:43 +08:00
def change
create_table :sample_comments do |t|
t.integer :sample_id, null: false
t.integer :comment_id, null: false
end
add_foreign_key :sample_comments, :samples
add_foreign_key :sample_comments, :comments
add_index :sample_comments, [:sample_id, :comment_id]
end
end