class CreateRadioProfiles < ActiveRecord::Migration[6.0]
  def change
    create_table :radio_profiles do |t|
      t.string :name
      t.string :country_code
      t.references :organisation

      t.timestamps
    end
  end
end
