Kaydet (Commit) f54c0ec0 authored tarafından Claude Paroz's avatar Claude Paroz

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.
üst d5a0acca
......@@ -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)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment