From 7eee1dca420ee7c4451d24cd32fa08aed0dcbb36 Mon Sep 17 00:00:00 2001 From: Adrian Torres Date: Thu, 10 Nov 2022 19:31:31 +0100 Subject: Fixed #14094 -- Added support for unlimited CharField on PostgreSQL. Co-authored-by: Mariusz Felisiak --- django/db/backends/base/features.py | 3 +++ 1 file changed, 3 insertions(+) (limited to 'django/db/backends/base') 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. -- cgit v1.3