Commit 5d99cd68 authored by Claude Paroz's avatar Claude Paroz
Browse files

[1.6.x] Fixed #21730 -- Removed superfluous db_index in custom auth docs

Thanks rafalp for the report.
Backport of c717ebbf from master.
parent 2206321f
Loading
Loading
Loading
Loading
+1 −2
Original line number Diff line number Diff line
@@ -502,7 +502,7 @@ password resets. You must then provide some key implementation details:
        as the identifying field::

            class MyUser(AbstractBaseUser):
                identifier = models.CharField(max_length=40, unique=True, db_index=True)
                identifier = models.CharField(max_length=40, unique=True)
                ...
                USERNAME_FIELD = 'identifier'

@@ -991,7 +991,6 @@ authentication app::
            verbose_name='email address',
            max_length=255,
            unique=True,
            db_index=True,
        )
        date_of_birth = models.DateField()
        is_active = models.BooleanField(default=True)