Edit: I understand the reason why this happened. It was because of the existance of initial_data.json file. Appereantly, south wants to add those fixtures after migration but failing because of unique property of a field.
Hi,
I changed my model from this:
class Setting(models.Model):
anahtar = models.CharField(max_length=20,unique=True)
deger = models.CharField(max_length=40)
def __unicode__(self):
return self.anahtar
To this,
class Setting(models.Model):
anahtar = models.CharField(max_length=20,unique=True)
deger = models.CharField(max_length=100)
def __unicode__(self):
return self.anahtar
Schema migration command completed successfully, but, trying to migrate gives me this error:
IntegrityError: duplicate key value violates unique constraint "blog_setting_anahtar_key"
DETAIL: Key (anahtar)=(blog_baslik) already exists.
I want to keep that field unique, but still migrate the field. By the way, data loss on that table is acceptable, so long as other tables in db stay intact.