diff options
| author | Mariusz Felisiak <felisiak.mariusz@gmail.com> | 2021-11-24 10:23:43 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-11-24 10:23:43 +0100 |
| commit | 1555e5850df0a442154e2ce5e54d47bbb013ff66 (patch) | |
| tree | c23773e51190ccba57134d7c50263d6667631af2 | |
| parent | 7f8f69fb38247827220805f18c2e0f08406d8a3b (diff) | |
Removed unneeded supports_combined_alters feature flag on Oracle.
supports_combined_alters is False by default.
| -rw-r--r-- | django/db/backends/oracle/features.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/django/db/backends/oracle/features.py b/django/db/backends/oracle/features.py index 78f7cdc6fd..b5fbc9535c 100644 --- a/django/db/backends/oracle/features.py +++ b/django/db/backends/oracle/features.py @@ -27,7 +27,6 @@ class DatabaseFeatures(BaseDatabaseFeatures): supports_sequence_reset = False can_introspect_materialized_views = True atomic_transactions = False - supports_combined_alters = False nulls_order_largest = True requires_literal_defaults = True closed_cursor_error_class = InterfaceError |
