Commit 6236e85a authored by Deokhyun Lee's avatar Deokhyun Lee

made models: artist, album, and song under homepage

parent 938ce8a7
Pipeline #2629 canceled with stages
from django.db import models from django.db import models
# Create your models here. # for artists
class Artist(models.Model):
artist_name = models.CharField(max_length = 50)
monthly_listeners = models.IntegerField()
# for albums
class Album(models.Model):
album_name = models.CharField(max_length = 100)
artist = models.CharField(max_length = 50)
description = models.CharField(max_length = 150)
release_date = models.DateTimeField("date published")
# for songs
class Song(models.Model):
song_title = models.CharField(max_length = 100)
artist = models.CharField(max_length = 50)
album = models.ForeignKey(Album, on_delete = models.CASCADE)
song_length = models.IntegerField()
\ 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