summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--django/db/backends/base/schema.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/django/db/backends/base/schema.py b/django/db/backends/base/schema.py
index 96182bed56..d117241fee 100644
--- a/django/db/backends/base/schema.py
+++ b/django/db/backends/base/schema.py
@@ -245,10 +245,10 @@ class BaseDatabaseSchemaEditor:
if (field.empty_strings_allowed and not field.primary_key and
self.connection.features.interprets_empty_strings_as_nulls):
null = True
- if null and not self.connection.features.implied_column_null:
- yield 'NULL'
- elif not null:
+ if not null:
yield 'NOT NULL'
+ elif not self.connection.features.implied_column_null:
+ yield 'NULL'
if field.primary_key:
yield 'PRIMARY KEY'
elif field.unique: