Update models.py song lyrics length

parent 5a7efc78
...@@ -28,7 +28,7 @@ class Song(models.Model): ...@@ -28,7 +28,7 @@ class Song(models.Model):
album = models.ForeignKey(Album, on_delete=models.CASCADE) album = models.ForeignKey(Album, on_delete=models.CASCADE)
song_length = models.PositiveIntegerField() song_length = models.PositiveIntegerField()
music_video = models.BooleanField(null = True) music_video = models.BooleanField(null = True)
lyrics = models.CharField(max_length=1000, null = True) lyrics = models.CharField(max_length=10000, null = True)
def __str__(self): def __str__(self):
return self.song_title return self.song_title
\ No newline at end of file
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