7
ja dwa model:IntegrityError: null wartość w kolumnie "city_id" jest niezgodny z nie-NULL
class City(models.Model):
name = models.CharField(max_length=50)
country = models.OneToOneField(Country)
def __unicode__(self):
return self.name
class UserProfile(models.Model):
user = models.OneToOneField(User)
city = models.OneToOneField(City)
kiedy syncdb i utworzyć użytkownika admin:
IntegrityError: null value in column "city_id" violates not-null constraint
Jak można naprawić ten błąd?