HabitatMap/AirCasting

View on GitHub
db/migrate/20120831120723_add_index_to_streams_on_rectangle.rb

Summary

Maintainability
A
0 mins
Test Coverage
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