Commit 2c22fbb5 authored by Stefan Gomez's avatar Stefan Gomez

Updated the models.py of the homepage to add the new attributes.

parent 368a46b8
...@@ -3,6 +3,8 @@ from django.db import models ...@@ -3,6 +3,8 @@ from django.db import models
class Artist(models.Model): class Artist(models.Model):
artist_name = models.CharField(max_length=100) artist_name = models.CharField(max_length=100)
monthly_listeners = models.IntegerField() monthly_listeners = models.IntegerField()
birth_name = models.CharField(max_length=100)
bio = models.TextField(max_length=700)
class Album(models.Model): class Album(models.Model):
album_name = models.CharField(max_length=100) album_name = models.CharField(max_length=100)
...@@ -12,6 +14,8 @@ class Album(models.Model): ...@@ -12,6 +14,8 @@ class Album(models.Model):
) )
description = models.TextField() description = models.TextField()
release_date = models.CharField(max_length=100) release_date = models.CharField(max_length=100)
label = models.CharField(max_length=100)
song_count = models.IntegerField()
class Song(models.Model): class Song(models.Model):
song_title = models.CharField(max_length=100) song_title = models.CharField(max_length=100)
...@@ -24,3 +28,5 @@ class Song(models.Model): ...@@ -24,3 +28,5 @@ class Song(models.Model):
on_delete=models.CASCADE on_delete=models.CASCADE
) )
song_length = models.IntegerField() 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