class RemoveObsoleteStateReportingConfigFields < ActiveRecord::Migration[6.0]
  def change
    change_table :state_reporting_configs, bulk: true do |t|
      t.remove :start_time, :end_time, :minutes, :days, :grading_period
      t.remove_references :schedule_descriptor, index: true
    end
  end
end
