Models does not create tables when synched
I have some django models for my extended users profile. Problem is that this code does not create tables when syncdb is used (simply nothing happens. No validation errors). Why is that happening? (Also those models give import error elsewhere) : #!/usr/bin/env python # encoding: utf-8 from django.db import models from django.contrib.auth.models import User from registration.signals import user_registered from forms import ExtendedRegistrationForm import hashlib class InheritedProfile(models.Model): first_name = models.CharField("Name", max_length=50, blank=True, null=True) last_name = models