Commit b9a8fac4 authored by Mavrick Jordan Lee's avatar Mavrick Jordan Lee

Updated Album Model in Homepage

parent ff0a852f
......@@ -12,6 +12,8 @@ class Album(models.Model):
artist_name = models.ForeignKey(Artist, on_delete=models.CASCADE)
description = models.CharField(max_length=100)
release_date = models.CharField(max_length=50)
label = models.CharField(max_length=50)
song_count = models.IntegerField()
class Song(models.Model):
song_title = models.CharField(max_length=50)
......
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