From b3b27d25932b994e1d1834479d2b79bb1284c6ba Mon Sep 17 00:00:00 2001 From: Adrian Holovaty Date: Tue, 2 Aug 2005 17:48:33 +0000 Subject: [PATCH] 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 --- django/models/auth.py | 1 - 1 file changed, 1 deletion(-) diff --git a/django/models/auth.py b/django/models/auth.py index 63e879fdea8..cd17194339d 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'), )