diff options
| author | Simon Charette <charette.s@gmail.com> | 2024-02-03 10:54:51 -0500 |
|---|---|---|
| committer | Mariusz Felisiak <felisiak.mariusz@gmail.com> | 2024-02-03 22:47:40 +0100 |
| commit | dfc77637ea5c1aa81caa72b1cf900e6931d61b54 (patch) | |
| tree | 9f9a7e603d09c33736c6f8e2ddb501efe8e4b126 /tests/schema | |
| parent | 0630ca5725ba5b17c61cd1f6a05dce2660c4724e (diff) | |
Fixed #35162 -- Fixed crash when adding fields with db_default on MySQL.
MySQL doesn't allow literal DEFAULT values to be used for BLOB, TEXT,
GEOMETRY or JSON columns and requires expression to be used instead.
Regression in 7414704e88d73dafbcfbb85f9bc54cb6111439d3.
Diffstat (limited to 'tests/schema')
| -rw-r--r-- | tests/schema/tests.py | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/tests/schema/tests.py b/tests/schema/tests.py index 3a026281bd..cde3d7f991 100644 --- a/tests/schema/tests.py +++ b/tests/schema/tests.py @@ -2303,6 +2303,19 @@ class SchemaTests(TransactionTestCase): columns = self.column_classes(Author) self.assertEqual(columns["birth_year"][1].default, "1988") + @isolate_apps("schema") + def test_add_text_field_with_db_default(self): + class Author(Model): + description = TextField(db_default="(missing)") + + class Meta: + app_label = "schema" + + with connection.schema_editor() as editor: + editor.create_model(Author) + columns = self.column_classes(Author) + self.assertIn("(missing)", columns["description"][1].default) + @skipUnlessDBFeature( "supports_column_check_constraints", "can_introspect_check_constraints" ) |
