updated homepage

parent 4175177d
......@@ -24,7 +24,7 @@ class Song(models.Model):
song_title = models.CharField(max_length = 50, unique = True, default = "")
artist = models.ForeignKey(Artist, on_delete = models.CASCADE)
album = models.ForeignKey(Album, on_delete = models.CASCADE)
song_length = models.IntegerField(default = "0")
song_length = models.FloatField(default = "0")
music_video = models.BooleanField(default = False)
lyrics = models.TextField(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