Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
J
joei_yucoco_music
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Joei Yucoco
joei_yucoco_music
Commits
fc8f0bf4
Commit
fc8f0bf4
authored
Feb 21, 2023
by
Joei Yucoco
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Updated README
parent
d633f74a
Changes
8
Hide whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
27 additions
and
3 deletions
+27
-3
.DS_Store
.DS_Store
+0
-0
README.txt
README.txt
+8
-2
.DS_Store
joei_yucoco_music/.DS_Store
+0
-0
models.cpython-39.pyc
joei_yucoco_music/Homepage/__pycache__/models.cpython-39.pyc
+0
-0
0003_alter_artist_bio.py
...yucoco_music/Homepage/migrations/0003_alter_artist_bio.py
+18
-0
0003_alter_artist_bio.cpython-39.pyc
...grations/__pycache__/0003_alter_artist_bio.cpython-39.pyc
+0
-0
models.py
joei_yucoco_music/Homepage/models.py
+1
-1
db.sqlite3
joei_yucoco_music/db.sqlite3
+0
-0
No files found.
.DS_Store
View file @
fc8f0bf4
No preview for this file type
README.txt
View file @
fc8f0bf4
...
...
@@ -4,9 +4,15 @@
Full name: Joei Alexene C. Yucoco
ID Number: 216469
Course & Section: BS CS-DGDD, Section F
Lab# and Title: Lab
1, Song Library
Date of Submission: Feb
13
, 2023
Lab# and Title: Lab
2, Song Library v2
Date of Submission: Feb
21
, 2023
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
joei_yucoco_music/.DS_Store
View file @
fc8f0bf4
No preview for this file type
joei_yucoco_music/Homepage/__pycache__/models.cpython-39.pyc
View file @
fc8f0bf4
No preview for this file type
joei_yucoco_music/Homepage/migrations/0003_alter_artist_bio.py
0 → 100644
View file @
fc8f0bf4
# 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
),
),
]
joei_yucoco_music/Homepage/migrations/__pycache__/0003_alter_artist_bio.cpython-39.pyc
0 → 100644
View file @
fc8f0bf4
File added
joei_yucoco_music/Homepage/models.py
View file @
fc8f0bf4
...
...
@@ -4,7 +4,7 @@ class Artist(models.Model):
artist_name
=
models
.
CharField
(
max_length
=
100
)
monthly_listeners
=
models
.
IntegerField
()
birth_name
=
models
.
CharField
(
max_length
=
100
)
bio
=
models
.
TextField
()
bio
=
models
.
TextField
(
max_length
=
700
)
...
...
joei_yucoco_music/db.sqlite3
View file @
fc8f0bf4
No preview for this file type
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment