diff options
| author | Adrian Torres <atorresj@redhat.com> | 2022-11-10 19:31:31 +0100 |
|---|---|---|
| committer | Mariusz Felisiak <felisiak.mariusz@gmail.com> | 2022-12-28 12:31:04 +0100 |
| commit | 7eee1dca420ee7c4451d24cd32fa08aed0dcbb36 (patch) | |
| tree | f643059561e9699cc961845f63faf0a3664ff5d0 /django/db/backends/base | |
| parent | 78f163a4fb3937aca2e71786fbdd51a0ef39629e (diff) | |
Fixed #14094 -- Added support for unlimited CharField on PostgreSQL.
Co-authored-by: Mariusz Felisiak <felisiak.mariusz@gmail.com>
Diffstat (limited to 'django/db/backends/base')
| -rw-r--r-- | django/db/backends/base/features.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/django/db/backends/base/features.py b/django/db/backends/base/features.py index b5b6c5b55d..ef1fe88336 100644 --- a/django/db/backends/base/features.py +++ b/django/db/backends/base/features.py @@ -345,6 +345,9 @@ class BaseDatabaseFeatures: # Set to (exception, message) if null characters in text are disallowed. prohibits_null_characters_in_text_exception = None + # Does the backend support unlimited character columns? + supports_unlimited_charfield = False + # Collation names for use by the Django test suite. test_collations = { "ci": None, # Case-insensitive. |
