class CreateRadioManagements < ActiveRecord::Migration[6.0]
  def change
    create_table :radio_managements do |t|
      t.boolean :client_steering
      t.boolean :assoc_steering
      t.boolean :steering_auto_channel
      t.boolean :auto_channel_balancing
      t.integer :required_probe_snr
      t.integer :required_roam_snr
      t.integer :load_kick_threshold
      t.integer :radio_profile_id

      t.timestamps
    end
  end
end
