From 949bc0cbb861a28134049d841da61467fba39d9c Mon Sep 17 00:00:00 2001
From: Bill Fenner <fenner@fenron.net>
Date: Fri, 1 Jun 2007 18:10:50 +0000
Subject: [PATCH] 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

---
 ietf/proceedings/models.py | 1 -
 1 file changed, 1 deletion(-)

diff --git a/ietf/proceedings/models.py b/ietf/proceedings/models.py
index be94a36dd..a43140b97 100644
--- a/ietf/proceedings/models.py
+++ b/ietf/proceedings/models.py
@@ -173,7 +173,6 @@ class IESGHistory(models.Model):
         return "%s (%s)" % (self.person,self.area)
     class Meta:
         db_table = 'iesg_history'
-	unique_together = (('meeting', 'area'), )
     class Admin:
         pass