HabitatMap/AirCasting

View on GitHub
db/migrate/20120716095423_add_indexes_to_streams_table.rb

Summary

Maintainability
A
0 mins
Test Coverage
class AddIndexesToStreamsTable < ActiveRecord::Migration[4.2]
  def change
    add_index :streams, :session_id
    add_index :streams, %i[sensor_name measurement_type]
  end
end