Changed description from CharField to TextField

parent 09ed004c
No preview for this file type
......@@ -9,7 +9,7 @@ class Artist(models.Model):
class Album(models.Model):
album_name = models.CharField(max_length=50)
artist = models.CharField(max_length=50)
description = models.CharField(max_length=100)
description = models.TextField()
release_date = models.CharField(max_length=20)
label = models.CharField(max_length=50)
song_count = models.IntegerField()
......
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