diff options
| author | Tim Graham <timograham@gmail.com> | 2020-03-23 01:09:10 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-03-23 06:09:10 +0100 |
| commit | e21788121b6222cab84644648b3f1a68f69002a0 (patch) | |
| tree | a94254b20887d9a44f3c982c7aa624608d6c238f | |
| parent | ffde4d5da88da6ed40ffc090503896d329bc67f8 (diff) | |
Added missing Meta.apps to a schema model.
| -rw-r--r-- | tests/schema/models.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/schema/models.py b/tests/schema/models.py index 5b756e941c..6d4465807a 100644 --- a/tests/schema/models.py +++ b/tests/schema/models.py @@ -210,6 +210,7 @@ class Thing(models.Model): when = models.CharField(max_length=1, primary_key=True) class Meta: + apps = new_apps db_table = 'drop' def __str__(self): |
