Update models.py

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