diff options
| author | Mariusz Felisiak <felisiak.mariusz@gmail.com> | 2016-12-19 22:16:11 +0100 |
|---|---|---|
| committer | Tim Graham <timograham@gmail.com> | 2016-12-19 16:16:11 -0500 |
| commit | cc0bb07013ed3e7ec58ee6da014ed3094a1a350f (patch) | |
| tree | 226d933c382318d2c0f1f6033e38f9a2d050094a /django | |
| parent | 10278885fd909085bd76ccc1690a979582455f9e (diff) | |
Refs #19884 -- Removed DatabaseFeatures.can_introspect_max_length.
Unused (always True) after 3e43d24ad36d45cace57e6a7efd34638577ae744.
Diffstat (limited to 'django')
| -rw-r--r-- | django/db/backends/base/features.py | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/django/db/backends/base/features.py b/django/db/backends/base/features.py index d749173d51..8ba77be133 100644 --- a/django/db/backends/base/features.py +++ b/django/db/backends/base/features.py @@ -116,9 +116,6 @@ class BaseDatabaseFeatures(object): # Does the backend reset sequences between tests? supports_sequence_reset = True - # Can the backend determine reliably the length of a CharField? - can_introspect_max_length = True - # Can the backend determine reliably if a field is nullable? # Note that this is separate from interprets_empty_strings_as_nulls, # although the latter feature, when true, interferes with correct |
