ManageIQ/manageiq

View on GitHub
app/models/computer_system.rb

Summary

Maintainability
A
0 mins
Test Coverage
A
100%
class ComputerSystem < ApplicationRecord
  belongs_to :managed_entity, :polymorphic => true

  has_one :operating_system, :dependent => :destroy
  has_one :hardware, :dependent => :destroy

  has_many :connected_physical_switches, :through => :hardware
end