[Answered ]-Django: 1 database shared by N applications

2๐Ÿ‘

โœ…

I like to create an app called common which includes utilities, basemodels, utility base test classes that all (or multiple apps) share.

You can create a common app and just put the models.py file in there. As long as you register it you can use manage.py syncdb and just import its classes where you need them.

๐Ÿ‘คdm03514

Leave a comment