Commit c3b2a05a authored by Jan Enzo Salvador's avatar Jan Enzo Salvador

Set the Artist.bio maximum length of text to 700

parent d33a809c
Pipeline #2814 failed with stages
...@@ -4,7 +4,7 @@ class Artist(models.Model): ...@@ -4,7 +4,7 @@ class Artist(models.Model):
artist_name = models.CharField(max_length = 50, default = "") artist_name = models.CharField(max_length = 50, default = "")
monthly_listeners = models.IntegerField(default = 0) monthly_listeners = models.IntegerField(default = 0)
birth_name = models.CharField(max_length = 50, default = "") birth_name = models.CharField(max_length = 50, default = "")
bio = models.TextField(default = "") bio = models.TextField(max_length = 700, default = "")
class Album(models.Model): class Album(models.Model):
album_name = models.CharField(max_length = 50, default = "") album_name = models.CharField(max_length = 50, default = "")
......
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