HabitatMap/AirCasting

View on GitHub
db/migrate/20240520174314_add_threshold_sets_id_to_streams.rb

Summary

Maintainability
A
0 mins
Test Coverage
class AddThresholdSetsIdToStreams < ActiveRecord::Migration[6.1]
  def change
    add_column :streams, :threshold_set_id, :integer
    add_index :streams, :threshold_set_id
    add_foreign_key :streams, :threshold_sets, column: :threshold_set_id
  end
end