Commit fc8f0bf4 authored by Joei Yucoco's avatar Joei Yucoco

Updated README

parent d633f74a
No preview for this file type
...@@ -4,9 +4,15 @@ ...@@ -4,9 +4,15 @@
Full name: Joei Alexene C. Yucoco Full name: Joei Alexene C. Yucoco
ID Number: 216469 ID Number: 216469
Course & Section: BS CS-DGDD, Section F Course & Section: BS CS-DGDD, Section F
Lab# and Title: Lab 1, Song Library Lab# and Title: Lab 2, Song Library v2
Date of Submission: Feb 13, 2023 Date of Submission: Feb 21, 2023
This lab was truthfully created by me, and me only. All external sources are cited here: This lab was truthfully created by me, and me only. All external sources are cited here:
https://www.geeksforgeeks.org/datefield-django-models/
https://www.geeksforgeeks.org/textfield-django-models/
https://www.geeksforgeeks.org/booleanfield-django-models/
https://songstats.com/artist/ew8puvai/rick-astley
https://en.wikipedia.org/wiki/Rick_Astley
<sgd> Joei Alexene C. Yucoco, 20/02/2023 <sgd> Joei Alexene C. Yucoco, 20/02/2023
# Generated by Django 3.2 on 2023-02-21 04:02
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('Homepage', '0002_auto_20230221_0325'),
]
operations = [
migrations.AlterField(
model_name='artist',
name='bio',
field=models.TextField(max_length=700),
),
]
...@@ -4,7 +4,7 @@ class Artist(models.Model): ...@@ -4,7 +4,7 @@ class Artist(models.Model):
artist_name = models.CharField(max_length=100) artist_name = models.CharField(max_length=100)
monthly_listeners = models.IntegerField() monthly_listeners = models.IntegerField()
birth_name = models.CharField(max_length=100) birth_name = models.CharField(max_length=100)
bio = models.TextField() bio = models.TextField(max_length=700)
......
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