Re: Best approach for using one or more tables of the same database in two different projects

2014-09-22 Thread Collin Anderson
If you are going to use separate tables in the same database, you will likely need separate models in django. You could however share methods and fields between the similar models using "abstract" models. https://docs.djangoproject.com/en/dev/topics/db/models/#abstract-base-classes -- You rece

Best approach for using one or more tables of the same database in two different projects

2014-09-22 Thread Victor
Context: Linux Ubuntu, Apache2, Django 1.7, PostgreSQL. As a volunteer of a no-profit company, say Company A, devoted to palliative therapies , I successfully set up a Warehouse Management System (WMS) project on one of their servers using django and exclusively its magical admin interfac