db/migrate/20120831120723_add_index_to_streams_on_rectangle.rb
class AddIndexToStreamsOnRectangle < ActiveRecord::Migration[4.2]
def change
add_index :streams, :min_latitude
add_index :streams, :max_latitude
add_index :streams, :min_longitude
add_index :streams, :max_longitude
end
end