summaryrefslogtreecommitdiff
path: root/tests/migration_test_data_persistence
diff options
context:
space:
mode:
Diffstat (limited to 'tests/migration_test_data_persistence')
-rw-r--r--tests/migration_test_data_persistence/models.py7
1 files changed, 7 insertions, 0 deletions
diff --git a/tests/migration_test_data_persistence/models.py b/tests/migration_test_data_persistence/models.py
index 1b0b795d2c..c1572d5ddf 100644
--- a/tests/migration_test_data_persistence/models.py
+++ b/tests/migration_test_data_persistence/models.py
@@ -3,3 +3,10 @@ from django.db import models
class Book(models.Model):
title = models.CharField(max_length=100)
+
+
+class Unmanaged(models.Model):
+ title = models.CharField(max_length=100)
+
+ class Meta:
+ managed = False