summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAdrian Holovaty <adrian@holovaty.com>2005-08-02 17:48:33 +0000
committerAdrian Holovaty <adrian@holovaty.com>2005-08-02 17:48:33 +0000
commitb3b27d25932b994e1d1834479d2b79bb1284c6ba (patch)
tree778aac17fd43b79d40327a6acda4312dcbb614c3
parent2e83364965d2684f0361cbc37617e0cab0fcc104 (diff)
Removed id field from auth.Message model -- it's implied
git-svn-id: http://code.djangoproject.com/svn/django/trunk@386 bcc190cf-cafb-0310-a4f2-bffc1f526a37
-rw-r--r--django/models/auth.py1
1 files changed, 0 insertions, 1 deletions
diff --git a/django/models/auth.py b/django/models/auth.py
index 63e879fdea..cd17194339 100644
--- a/django/models/auth.py
+++ b/django/models/auth.py
@@ -232,7 +232,6 @@ class Session(meta.Model):
class Message(meta.Model):
fields = (
- meta.AutoField('id', 'ID', primary_key=True),
meta.ForeignKey(User),
meta.TextField('message', 'message'),
)