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

[1.8.x] 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.
Backport of f54c0ec0 from master.
parent 8363f217
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)