Ticket #8162: permissions.diff

File permissions.diff, 547 bytes (added by Julia, 16 years ago)

Changeset for permissions model from 50 to 100 char limit.

  • contrib/auth/models.py

     
    7070
    7171    Three basic permissions -- add, change and delete -- are automatically created for each Django model.
    7272    """
    73     name = models.CharField(_('name'), max_length=50)
     73    name = models.CharField(_('name'), max_length=100)
    7474    content_type = models.ForeignKey(ContentType)
    7575    codename = models.CharField(_('codename'), max_length=100)
    7676
Back to Top