mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-11-11 01:44:34 +08:00
11 lines
343 B
Ruby
11 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
|