Commit 6911dd66 authored by Mavrick Jordan Lee's avatar Mavrick Jordan Lee

Updated Song Model in Homepage

parent b9a8fac4
......@@ -19,4 +19,6 @@ class Song(models.Model):
song_title = models.CharField(max_length=50)
artist_name = models.ForeignKey(Artist, on_delete=models.CASCADE)
album = models.ForeignKey(Album, on_delete=models.CASCADE)
song_length = models.IntegerField()
\ No newline at end of file
song_length = models.IntegerField()
music_video = models.BooleanField()
lyrics = models.TextField()
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