Ticket #8162: permissions.diff
File permissions.diff, 547 bytes (added by , 16 years ago) |
---|
-
contrib/auth/models.py
70 70 71 71 Three basic permissions -- add, change and delete -- are automatically created for each Django model. 72 72 """ 73 name = models.CharField(_('name'), max_length= 50)73 name = models.CharField(_('name'), max_length=100) 74 74 content_type = models.ForeignKey(ContentType) 75 75 codename = models.CharField(_('codename'), max_length=100) 76 76