mirror of
https://github.com/django/django.git
synced 2025-10-31 09:41:08 +00:00
Fixed #33872 -- Deprecated django.contrib.postgres.fields.CIText/CICharField/CIEmailField/CITextField.
This commit is contained in:
@@ -351,3 +351,17 @@ Miscellaneous
|
||||
* ``django.contrib.auth.hashers.SHA1PasswordHasher``,
|
||||
``django.contrib.auth.hashers.UnsaltedSHA1PasswordHasher``, and
|
||||
``django.contrib.auth.hashers.UnsaltedMD5PasswordHasher`` are deprecated.
|
||||
|
||||
* ``django.contrib.postgres.fields.CICharField`` is deprecated in favor of
|
||||
``CharField(db_collation="…")`` with a case-insensitive non-deterministic
|
||||
collation.
|
||||
|
||||
* ``django.contrib.postgres.fields.CIEmailField`` is deprecated in favor of
|
||||
``EmailField(db_collation="…")`` with a case-insensitive non-deterministic
|
||||
collation.
|
||||
|
||||
* ``django.contrib.postgres.fields.CITextField`` is deprecated in favor of
|
||||
``TextField(db_collation="…")`` with a case-insensitive non-deterministic
|
||||
collation.
|
||||
|
||||
* ``django.contrib.postgres.fields.CIText`` mixin is deprecated.
|
||||
|
||||
Reference in New Issue
Block a user