[Fixed]-Convert OneToOneField to MultipleTableInheritance

1👍

It won’t be faster, because your parent class object will still have a field in the database that links to the child class if you are using concrete inheritance(and sounds like it would be), so technically the efficiency is the same as OneToOne field.

The choice is also based on the business logic. Inheritance is used for the situations where you have things that are of similar type, so that you could define common fields/methods in the parent class and reduce some repetitive code. From your example sounds like Group and GroupUser are totally two different things, most likely they don’t share many common attributes either, so unless I misunderstand your intention, OneToOneField is a better candidate.

Leave a comment