Skip to main content
๐Ÿ› Bug HuntDJ Django Mediumโšก+20 XP

Missing Migration

New model field doesn't appear in the database.

๐Ÿ› Find the bug
1class Article(models.Model):
2 title = models.CharField(max_length=200)
3 summary = models.TextField() # newly added
๐Ÿ› The bug is on line 3

๐Ÿ”ง Select the correct fix: