From 5e04e84d67da8163f365e9f5fcd169e2630e2873 Mon Sep 17 00:00:00 2001 From: Yuekui Li Date: Wed, 19 May 2021 16:30:15 -0700 Subject: Fixed #32503 -- Fixed altering BLOB/TEXT field to non-nullable with default on MySQL 8.0.13+. MySQL 8.0.13+ supports defaults for BLOB/TEXT but not in the ALTER COLUMN statement. Regression in 6b16c91157512587017e9178d066ed1a683e7795. Thanks Matt Westcott for the report. --- tests/schema/models.py | 1 + 1 file changed, 1 insertion(+) (limited to 'tests/schema/models.py') diff --git a/tests/schema/models.py b/tests/schema/models.py index 6d4465807a..75e4de0874 100644 --- a/tests/schema/models.py +++ b/tests/schema/models.py @@ -158,6 +158,7 @@ class IntegerPK(models.Model): class Note(models.Model): info = models.TextField() + address = models.TextField(null=True) class Meta: apps = new_apps -- cgit v1.2.1