Commit 9120f7c0 authored by Michael Lopez's avatar Michael Lopez

added more attributes on the models

parent c03b2b26
......@@ -3,15 +3,22 @@ from django.db import models
class Artist(models.Model):
artist_name = models.CharField(max_length=30)
monthly_listeners = models.IntegerField()
birth_name = models.CharField(max_length=30)
bio = models.TextField()
class Album(models.Model):
album_name = models.CharField(max_length=30)
artist = models.CharField(max_length=30)
description = models.CharField(max_length=100)
release_date = models.DateField()
label = models.CharField(max_length=30)
song_count = models.IntegerField()
class Song(models.Model):
song_title = models.CharField(max_length=30)
artist = models.CharField(max_length=30)
album = models.CharField(max_length=30)
song_length = models.IntegerField()
music_video_flag = models.BooleanField()
song_count = models.IntegerField()
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