Fixed #3845 -- Added index to URL attribute of flatpages model.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@4849 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
parent
5f68a26ff4
commit
aebd5f94a2
|
@ -4,7 +4,7 @@ from django.contrib.sites.models import Site
|
|||
from django.utils.translation import gettext_lazy as _
|
||||
|
||||
class FlatPage(models.Model):
|
||||
url = models.CharField(_('URL'), maxlength=100, validator_list=[validators.isAlphaNumericURL],
|
||||
url = models.CharField(_('URL'), maxlength=100, validator_list=[validators.isAlphaNumericURL], db_index=True,
|
||||
help_text=_("Example: '/about/contact/'. Make sure to have leading and trailing slashes."))
|
||||
title = models.CharField(_('title'), maxlength=200)
|
||||
content = models.TextField(_('content'))
|
||||
|
|
Loading…
Reference in New Issue