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