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

11 lines
369 B
Ruby

class AddForeignKeys < ActiveRecord::Migration[4.2]
def change
add_foreign_key :my_modules, :my_module_groups
add_foreign_key :project_comments, :comments
add_foreign_key :my_module_comments, :comments
add_foreign_key :result_assets, :results
add_foreign_key :result_comments, :comments
add_foreign_key :checklist_items, :checklists
end
end