class CreateNetworkSsidsWlanGroups < ActiveRecord::Migration[6.0]
  def change
    create_table :network_ssids_wlan_groups, id: false do |t|
      t.belongs_to :network_ssid
      t.belongs_to :wlan_group
    end
  end
end