Commit f54c0ec0 authored by Claude Paroz's avatar Claude Paroz
Browse files

Fixed #24658 -- Added missing Meta attribute in schema tests

Without that, the Note model would be initially created and then
the tests using that model failed when run in isolation.
parent d5a0acca
Loading
Loading
Loading
Loading
+3 −0
Original line number Diff line number Diff line
@@ -83,6 +83,9 @@ class BookWithSlug(models.Model):
class Note(models.Model):
    info = models.TextField()

    class Meta:
        apps = new_apps


class Tag(models.Model):
    title = models.CharField(max_length=255)