summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorMarkus Holtermann <info@markusholtermann.eu>2014-10-31 14:08:24 +0100
committerTim Graham <timograham@gmail.com>2014-10-31 13:30:30 -0400
commit715ccfde24f9f2b7f6710429370a1eff3c78fc2a (patch)
treefafa488c270dff08467b6536b64189c810565b42 /tests
parented2f96819c9ad6e21e4d397b6418915f5caf522f (diff)
Fixed #23738 -- Allowed migrating from NULL to NOT NULL with the same default value
Thanks to Andrey Antukh for the report.
Diffstat (limited to 'tests')
-rw-r--r--tests/schema/models.py8
-rw-r--r--tests/schema/tests.py27
2 files changed, 34 insertions, 1 deletions
diff --git a/tests/schema/models.py b/tests/schema/models.py
index ece07194b4..3139838b97 100644
--- a/tests/schema/models.py
+++ b/tests/schema/models.py
@@ -17,6 +17,14 @@ class Author(models.Model):
apps = new_apps
+class AuthorWithDefaultHeight(models.Model):
+ name = models.CharField(max_length=255)
+ height = models.PositiveIntegerField(null=True, blank=True, default=42)
+
+ class Meta:
+ apps = new_apps
+
+
class AuthorWithM2M(models.Model):
name = models.CharField(max_length=255)
diff --git a/tests/schema/tests.py b/tests/schema/tests.py
index ef3d693afc..acb90a37f7 100644
--- a/tests/schema/tests.py
+++ b/tests/schema/tests.py
@@ -7,7 +7,7 @@ from django.db.models.fields import (BinaryField, BooleanField, CharField, Integ
PositiveIntegerField, SlugField, TextField)
from django.db.models.fields.related import ManyToManyField, ForeignKey
from django.db.transaction import atomic
-from .models import (Author, AuthorWithM2M, Book, BookWithLongName,
+from .models import (Author, AuthorWithDefaultHeight, AuthorWithM2M, Book, BookWithLongName,
BookWithSlug, BookWithM2M, Tag, TagIndexed, TagM2MTest, TagUniqueRename,
UniqueTest, Thing, TagThrough, BookWithM2MThrough, AuthorTag, AuthorWithM2MThrough,
AuthorWithEvenLongerName, BookWeak)
@@ -448,6 +448,31 @@ class SchemaTests(TransactionTestCase):
self.assertEqual(Author.objects.get(name='Not null author').height, 12)
self.assertEqual(Author.objects.get(name='Null author').height, 42)
+ @unittest.skipUnless(connection.features.supports_combined_alters, "No combined ALTER support")
+ def test_alter_null_to_not_null_keeping_default(self):
+ """
+ #23738 - Can change a nullable field with default to non-nullable
+ with the same default.
+ """
+ # Create the table
+ with connection.schema_editor() as editor:
+ editor.create_model(AuthorWithDefaultHeight)
+ # Ensure the field is right to begin with
+ columns = self.column_classes(AuthorWithDefaultHeight)
+ self.assertTrue(columns['height'][1][6])
+ # Alter the height field to NOT NULL keeping the previous default
+ new_field = PositiveIntegerField(default=42)
+ new_field.set_attributes_from_name("height")
+ with connection.schema_editor() as editor:
+ editor.alter_field(
+ AuthorWithDefaultHeight,
+ AuthorWithDefaultHeight._meta.get_field_by_name("height")[0],
+ new_field,
+ )
+ # Ensure the field is right afterwards
+ columns = self.column_classes(AuthorWithDefaultHeight)
+ self.assertFalse(columns['height'][1][6])
+
@unittest.skipUnless(connection.features.supports_foreign_keys, "No FK support")
def test_alter_fk(self):
"""