Updated models.py

parent 9a2a5454
...@@ -2,15 +2,25 @@ from django.db import models ...@@ -2,15 +2,25 @@ from django.db import models
class Artist(models.Model): class Artist(models.Model):
artist_name = models.CharField(max_length=100)
monthly_listeners = models.PositiveIntegerField()
birth_name = models.CharField(max_length=100) birth_name = models.CharField(max_length=100)
bio = models.CharField(max_length=700) bio = models.CharField(max_length=700)
class Album(models.Model): class Album(models.Model):
album_name = models.CharField(max_length=100)
artist = models.ForeignKey(Artist, on_delete=models.CASCADE)
desciption = models.IntegerField()
release_date = models.CharField(max_length=100)
label = models.CharField(max_length=100) label = models.CharField(max_length=100)
song_count = models.PositiveIntegerField() song_count = models.PositiveIntegerField()
class Song(models.Model): class Song(models.Model):
song_title = models.CharField(max_length=100)
artist = models.ForeignKey(Artist, on_delete=models.CASCADE)
album = models.ForeignKey(Album, on_delete=models.CASCADE)
song_length = models.PositiveIntegerField()
music_video = models.BooleanField() music_video = models.BooleanField()
lyrics = models.CharField(max_length=1000) lyrics = models.CharField(max_length=1000)
\ 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