pinax / symposion

a Django project for conference websites
BSD 3-Clause "New" or "Revised" License
299 stars 146 forks source link

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

Open qhhonx opened 10 years ago

qhhonx commented 10 years ago

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.