class CreateRadioSettings < ActiveRecord::Migration[6.0]
  def change
    create_table :radio_settings do |t|
      t.string :band
      t.integer :channel
      t.integer :power
      t.integer :radio_profile_id
      t.boolean :is_enable, default: true
      t.boolean :country_ie, default: true
      t.string :require_mode

      t.timestamps
    end
  end
end
