mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-11-12 12:16:06 +08:00
10 lines
369 B
Ruby
10 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
|