Just a quick noob question. Do I need to have content_type, object_id, and content_object every time I use GenericRelation in models? I get the concept behind generic relation but I'm confused on how to implement it.
Below is the setup.
Address - a generic content type; to be used in different models.
Company - a simple model that uses address generic content type.
Person - a simple model that uses address generic content type.
Is it essential to have these 3 attributes in all models? Thanks in advance!