mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2025-02-06 23:15:34 +08:00
8 lines
216 B
Ruby
8 lines
216 B
Ruby
|
class AddConnectionsAndSampleTasksIndexes < ActiveRecord::Migration
|
||
|
def change
|
||
|
add_index :connections, :input_id
|
||
|
add_index :connections, :output_id
|
||
|
add_index :sample_my_modules, :my_module_id
|
||
|
end
|
||
|
end
|