Version 4 (modified by Mikko Suniala <mikko.suniala@…>, 17 years ago) ( diff )

Added a note about initial sql data paths.

CookBook - Data Models - Splitting models across multiple files

To split models across multiple files, you can do the following (works at least with revision 2819):

The important thing to notice here is the app_label attribute in the Meta class. If that is omitted, a subsequent manage.py syncdb run will not pick up these models.

apps/polls/models/__init__.py:

from poll import Poll
from choice import Choice

apps/polls/models/poll.py:

from django.db import models

class Poll(models.Model):
    question = models.CharField(maxlength=200)
    pub_date = models.DateTimeField('date published')

    class Meta:
        app_label = 'polls'

apps/polls/models/choice.py:

from django.db import models
from poll import Poll

class Choice(models.Model):
    poll = models.ForeignKey(Poll)
    choice = models.CharField(maxlength=200)
    votes = models.IntegerField()

    class Meta:
        app_label = 'polls'

Ok so the example is a bit stupid but it should illustrate the point.

Providing initial sql data for models

If you provide initial sql data for you models (as described in Providing initial SQL data) you should notice that at least in Django 0.95 the path for sql files is different when this recipe is applied. In this case the path is:

<appname>/models/sql/<modelname>.sql

Note: See TracWiki for help on using the wiki.
Back to Top