Aug 25 2011
Splitting up django models
- Create models folder unter myapp
- Delete models.py under myapp
- Add
class Meta: app_label='myapp'to each model
- Add for each model something like
from myModelFile import myModel
to models/__init__.py
Aug 25 2011
class Meta:
app_label='myapp'
to each model
from myModelFile import myModel
to models/__init__.py