From f766b2999e1622694d4bb5cbdd842551fc50c6cf Mon Sep 17 00:00:00 2001 From: Ben Adida <ben@adida.net> Date: Thu, 30 Dec 2010 11:17:09 -0800 Subject: [PATCH] rejiggering models to set up migrations --- helios/models.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/helios/models.py b/helios/models.py index 2952312..8809042 100644 --- a/helios/models.py +++ b/helios/models.py @@ -551,7 +551,8 @@ class Voter(models.Model, electionalgs.Voter): election = models.ForeignKey(Election) # let's link directly to the user now - # voter_type = models.CharField(max_length = 100) + # FIXME: delete this as soon as migrations are set up + voter_type = models.CharField(max_length = 100) # for users of type password, no user object is created # but a dynamic user object is created automatically -- GitLab