Commit fe6b9497 authored by Joaquin Hermosisima's avatar Joaquin Hermosisima

Added new attributes for the models

parent 018d539e
......@@ -4,16 +4,20 @@ from django.db import models
class Artist(models.Model):
artist_name = models.CharField(max_length=50)
birth_name = models.CharField(max_length=50)
monthly_listeners = models.IntegerField()
bio = models.TextField(max_length=700)
class Album(models.Model):
album_name = models.CharField(max_length=50)
label = models.CharField(max_length=50)
artist = models.ForeignKey(Artist, on_delete=models.CASCADE)
description = models.TextField()
release_date = models.IntegerField()
release_date = models.DateField()
class Song(models.Model):
song_title = models.CharField(max_length=50)
artist = models.ForeignKey(Artist, on_delete=models.CASCADE)
album = models.ForeignKey(Album, on_delete=models.CASCADE)
song_length = models.IntegerField()
music_video = models.BooleanField()
\ 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