How to extend models of other applications in Django?
- by culebrón
I have a small app with Category model and want to make a required foreign key referencing it from Photologue Gallery model.
What's the right approach? I can make many-to-many field in Category, but this way it will not be required in Gallery. Use "register" and modify the Gallery model? Inherit it in my app?