Commit 644f18c9 authored by Joaquin Hermosisima's avatar Joaquin Hermosisima

finished music library

parent 3eb7e930
Pipeline #2784 failed with stages
......@@ -4,4 +4,4 @@ from django.http import HttpResponse
# Create your views here.
def about_info(request):
return HttpResponse("This is my about info")
return HttpResponse("I listen to classical music (piano, violin, and classical guitar pieces), acoustic/indie folk, J-Pop and J-Rock, video game and anime soundtracks, & really anything with huge and full-on instrumentation")
......@@ -4,4 +4,4 @@ from django.http import HttpResponse
# Create your views here.
def contact_info(request):
return HttpResponse("This is my contact info")
return HttpResponse("Get in touch with me through Shakey's hotline 7777-7777 or #77777 or email callcenter@shakeysdelivery.com.ph")
# Generated by Django 4.1.7 on 2023-02-17 16:30
from django.db import migrations, models
import django.db.models.deletion
class Migration(migrations.Migration):
initial = True
dependencies = [
]
operations = [
migrations.CreateModel(
name='Album',
fields=[
('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
('album_name', models.CharField(max_length=50)),
('description', models.TextField()),
('release_date', models.IntegerField()),
],
),
migrations.CreateModel(
name='Artist',
fields=[
('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
('artist_name', models.CharField(max_length=50)),
('monthly_listeners', models.IntegerField()),
],
),
migrations.CreateModel(
name='Song',
fields=[
('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
('song_title', models.CharField(max_length=50)),
('song_length', models.IntegerField()),
('album', models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, to='homepage.album')),
('artist', models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, to='homepage.artist')),
],
),
migrations.AddField(
model_name='album',
name='artist',
field=models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, to='homepage.artist'),
),
]
from django.db import models
# Create your models here.
class Artist(models.Model):
artist_name = models.CharField(max_length=50)
monthly_listeners = models.IntegerField()
class Album(models.Model):
album_name = models.CharField(max_length=50)
artist = models.ForeignKey(Artist, on_delete=models.CASCADE)
description = models.TextField()
release_date = models.IntegerField()
class Song(models.Model):
song_title = models.CharField(max_length=50)
artist = models.ForeignKey(Artist, on_delete=models.CASCADE)
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