Я просто немного зациклен на этом коде, найденном в Ruby on Rails Tutorial.org. Что именно делает его add_index? Почему для этого есть 3 строки?
class CreateRelationships < ActiveRecord::Migration
def change
create_table :relationships do |t|
t.integer :follower_id
t.integer :followed_id
t.timestamps
end
add_index :relationships, :follower_id
add_index :relationships, :followed_id
add_index :relationships, [:follower_id, :followed_id], unique: true
end
end