Re: Unique Id issue

2012-12-12 Thread Jani Tiainen
12.12.2012 8:55, ephan kirjoitti: Hi all, Am in a bit of a fix which I put myself in,I have the following models: class Town(...): name = models.CharField(unique=true) province = models.foreignKey(Province) class Area(): name = models.CharField(unique=true,max_length=120)

Unique Id issue

2012-12-11 Thread ephan
Hi all, Am in a bit of a fix which I put myself in,I have the following models: class Town(...): name = models.CharField(unique=true) province = models.foreignKey(Province) class Area(): name = models.CharField(unique=true,max_length=120) town = models.CharField(Town) The