symposion icon indicating copy to clipboard operation
symposion copied to clipboard

How to extend symposion.conference.models.Conference model without creating `Section` table?

Open qhhonx opened this issue 10 years ago • 0 comments

Suppose I just want to customize the Conference model now. So I write these codes.

from symposion.conference.models import Conference

class ConferenceDetail(Conference):
    """
    Store conference details
    """
    location = models.CharField(max_length=50)
    # ...

However, when I run python manage.py syncdb, three tables, namely conference,section,conferencedetail, be created and I don't need section table. BTW, I do not put symposion into INSTALLED_APPS.

qhhonx avatar Aug 10 '14 03:08 qhhonx