mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-11-11 01:44:34 +08:00
7 lines
221 B
Ruby
7 lines
221 B
Ruby
class AddConnectionsAndSampleTasksIndexes < ActiveRecord::Migration[4.2]
|
|
def change
|
|
add_index :connections, :input_id
|
|
add_index :connections, :output_id
|
|
add_index :sample_my_modules, :my_module_id
|
|
end
|
|
end
|