Ticket #4748: models_py.diff
| File models_py.diff, 0.6 kB (added by Thomas Güttler <hv@tbz-pariv.de>, 3 years ago) |
|---|
-
django/contrib/auth/models.py
old new 46 46 47 47 Three basic permissions -- add, change and delete -- are automatically created for each Django model. 48 48 """ 49 name = models.CharField(_('name'), maxlength= 50)49 name = models.CharField(_('name'), maxlength=100) 50 50 content_type = models.ForeignKey(ContentType) 51 51 codename = models.CharField(_('codename'), maxlength=100) 52 52
