Given the following models:
class BaseMachine(models.Model) fqdn = models.CharField(max_length=150) cpus = models.IntegerField() memory = models.IntegerField() class Meta: abstract = True class PhysicalMachine(BaseMachine) location = models.CharField(max_length=150) class VirtualMachine(BaseMachine) hypervisor = models.CharField(max_length=5) class Sysadmin(models.Model): name = models.CharField(max_length=100) admin_of = models.ManyToManyField...
In this example, I would like to associate 1 sysadmin with many machines - be it an instance of either PhysicalMachine or VirtualMachine. I know that I cannot have ManyToMany with an abstract base, but I was wondering if there is a better way to achieve this than just having a separate ManyToMany field in sysadmin for each of the models? In this small example, which may be valid, but if you have more than two subclasses or there are other models that you need to associate with the base class, this becomes something more than can be controlled.
Thanks:)
source share