summaryrefslogtreecommitdiff
path: root/polls/models.py
diff options
context:
space:
mode:
Diffstat (limited to 'polls/models.py')
-rw-r--r--polls/models.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/polls/models.py b/polls/models.py
index 38f1981..08395b8 100644
--- a/polls/models.py
+++ b/polls/models.py
@@ -46,5 +46,5 @@ class Vote(models.Model):
VOTE = ((-1, 'No'),
(0, 'Maybe'),
(1, 'Yes'),)
- vote = models.IntegerField(choices=VOTE)
+ value = models.IntegerField(choices=VOTE)