Commit 41fb78f1 authored by Jayson Lim's avatar Jayson Lim

Defined a __str__ method for the attributes

parent 36046f4e
from django.db import models
from django.urls import reverse
class Artist(models.Model):
artist_name = models.CharField(max_length=255)
......@@ -6,6 +7,10 @@ class Artist(models.Model):
birth_name = models.CharField(max_length=255, default=True)
bio = models.TextField(null=True, blank=True)
def __str__(self):
return self.artist_name
class Album(models.Model):
album_name = models.CharField(max_length=255)
artist = models.ForeignKey(Artist, null=True, default=True, on_delete=models.SET_DEFAULT)
......@@ -14,6 +19,10 @@ class Album(models.Model):
label = models.CharField(max_length=255,default=True)
song_count = models.IntegerField(default=True)
def __str__(self):
return self.album_name
class Song(models.Model):
song_title = models.CharField(max_length=255)
artist = models.ForeignKey(Artist, null=True, default=True, on_delete=models.SET_DEFAULT)
......@@ -21,3 +30,4 @@ class Song(models.Model):
song_length = models.IntegerField()
music_video = models.BooleanField(default=True)
lyrics = models.TextField(null=True, blank=True)
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