# Challenge 1/5: This models.py can be improved a bit. Can you fix the issues?
from django.db import models class Comment(models.Model): body = models.CharField(max_length=5000) date = models.DateField()