1
0
mirror of https://github.com/django/django.git synced 2024-12-22 17:16:24 +00:00

Added missing Meta.apps to a schema model.

This commit is contained in:
Tim Graham 2020-03-23 01:09:10 -04:00 committed by GitHub
parent ffde4d5da8
commit e21788121b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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):