Commit d65904f2 authored by Nicholo Pardines's avatar Nicholo Pardines

Updated models and corrected the release_date type

parent 70cf58eb
...@@ -18,16 +18,22 @@ from django.db import models ...@@ -18,16 +18,22 @@ from django.db import models
# * song_length # * song_length
class Artist(models.Model): class Artist(models.Model):
artist_name = models.CharField(max_length=50) artist_name = models.CharField(max_length=50)
birth_name = models.CharField(max_length=50)
bio = models.CharField(max_length=700)
monthly_listeners = models.IntegerField() monthly_listeners = models.IntegerField()
class Album(models.Model): class Album(models.Model):
album_name = models.CharField(max_length=50) album_name = models.CharField(max_length=50)
artist = models.ForeignKey(Artist, on_delete=models.CASCADE) artist = models.ForeignKey(Artist, on_delete=models.CASCADE)
description = models.CharField(max_length=50) description = models.CharField(max_length=50)
release_date = models.IntegerField() release_date = models.DateField()
label = models.CharField(max_length=60)
song_count = models.IntegerField()
class Song(models.Model): class Song(models.Model):
song_title = models.CharField(max_length=50) song_title = models.CharField(max_length=50)
artist = models.ForeignKey(Artist, on_delete=models.CASCADE) artist = models.ForeignKey(Artist, on_delete=models.CASCADE)
album = models.ForeignKey(Album, on_delete=models.CASCADE) album = models.ForeignKey(Album, on_delete=models.CASCADE)
song_length = models.IntegerField() song_length = models.IntegerField()
\ No newline at end of file music_video = models.BooleanField()
lyrics = models.CharField()
\ 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