Oops, a unique_together of the first two fields is wrong, since

there are two ADs per area, and of the three fields doesn't add
anything real, so just don't try to make it unique.
 - Legacy-Id: 207
This commit is contained in:
Bill Fenner 2007-06-01 18:10:50 +00:00
parent e452d4b89d
commit 949bc0cbb8

View file

@ -173,7 +173,6 @@ class IESGHistory(models.Model):
return "%s (%s)" % (self.person,self.area) return "%s (%s)" % (self.person,self.area)
class Meta: class Meta:
db_table = 'iesg_history' db_table = 'iesg_history'
unique_together = (('meeting', 'area'), )
class Admin: class Admin:
pass pass