Commit 6af3039b authored by Javi Ng's avatar Javi Ng

wrote models for artists, albums and models (pre-migration)

parent f636c556
from django.db import models
# Create your models here.
class Artist(models.Model):
artist_name = models.CharField(max_length = 50)
monthly_listeners = models.IntegerField(default = 0)
class Album(models.Model):
album_name = models.CharField(max_length = 100)
artist = models.ForeignKey(Artist, on_delete = models.CASCADE)
description = models.CharField(max_length = 500)
release_date = models.DateTimeField("Date Released")
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.IntegerField(default = 0)
\ 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