Commit 8984d2a8 authored by justin's avatar justin

Created models (TODO: Migrations)

parent 068842bb
from django.db import models from django.db import models
# Create your models here.
class Artist(models.Model):
artist_name = models.CharField(max_length=200)
monthly_listeners = models.IntegerField(default=0)
class Album(models.Model):
album_name = models.CharField(max_length=250)
artist = models.ForeignKey(
"Artist",
on_delete=models.CASCADE,
)
description = models.CharField(max_length=500)
release_date = models.DateField(
auto_now=False,
auto_now_add=False,
)
class Song(models.Model):
song_title = models.CharField(max_length=250)
artist = models.ForeignKey(
"Artist",
on_delete=models.CASCADE,
)
album = models.ForeignKey(
"Album",
on_delete=models.CASCADE,
)
song_length = models.PositiveIntegerField()
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