Update models.py

parent 8bdc9d91
......@@ -6,6 +6,9 @@ class Artist(models.Model):
birth_name = models.CharField(max_length=50, null=True)
bio = models.TextField(null=True)
def __str__(self):
return self.artist_name
class Album(models.Model):
album_name = models.CharField(max_length=50)
artist = models.ForeignKey(Artist, on_delete=models.CASCADE)
......@@ -14,6 +17,9 @@ class Album(models.Model):
label = models.CharField(max_length=50, null=True)
song_count = models.IntegerField(null=True)
def __str__(self):
return self.album_name
class Song(models.Model):
song_title = models.CharField(max_length=50)
artist = models.ForeignKey(Artist, on_delete=models.CASCADE)
......@@ -21,3 +27,6 @@ class Song(models.Model):
song_length = models.IntegerField()
music_video = models.BooleanField(null=True)
lyrics = models.TextField(max_length=10000, null=True)
def __str__(self):
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