Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
L
lexchan_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
Lex Philip Gabriel D. Chan
lexchan_music
Commits
e0838b4d
Commit
e0838b4d
authored
Feb 20, 2023
by
Lex Philip Gabriel D. Chan
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
updated README.txt
parent
94c3bb95
Changes
8
Show whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
80 additions
and
3 deletions
+80
-3
README.txt
README.txt
+3
-3
models.cpython-39.pyc
lexchan_music/About/__pycache__/models.cpython-39.pyc
+0
-0
0003_remove_song_album_remove_song_artist_delete_album_and_more.py
...ve_song_album_remove_song_artist_delete_album_and_more.py
+30
-0
0003_remove_song_album_remove_song_artist_delete_album_and_more.cpython-39.pyc
...m_remove_song_artist_delete_album_and_more.cpython-39.pyc
+0
-0
models.cpython-39.pyc
lexchan_music/Homepage/__pycache__/models.cpython-39.pyc
+0
-0
0001_initial.py
lexchan_music/Homepage/migrations/0001_initial.py
+47
-0
0001_initial.cpython-39.pyc
...mepage/migrations/__pycache__/0001_initial.cpython-39.pyc
+0
-0
db.sqlite3
lexchan_music/db.sqlite3
+0
-0
No files found.
README.txt
View file @
e0838b4d
...
...
@@ -2,7 +2,7 @@ Lex Philip Gabriel D. Chan
211411
BSMS Computer Science
CSCI 40 - E (Software Tools and Development Frameworks)
Lab
1 - Song Library
February
13
, 2023
Lab
2 - Song Library v2
February
20
, 2023
The lab was truthfully completed by me.
<sgd> Lex Philip Gabriel D. Chan, February 13, 2023
\ No newline at end of file
<sgd> Lex Philip Gabriel D. Chan, February 20, 2023
\ No newline at end of file
lexchan_music/About/__pycache__/models.cpython-39.pyc
View file @
e0838b4d
No preview for this file type
lexchan_music/About/migrations/0003_remove_song_album_remove_song_artist_delete_album_and_more.py
0 → 100644
View file @
e0838b4d
# Generated by Django 4.1.6 on 2023-02-13 14:16
from
django.db
import
migrations
class
Migration
(
migrations
.
Migration
):
dependencies
=
[
(
'About'
,
'0002_alter_album_artist_alter_song_album_and_more'
),
]
operations
=
[
migrations
.
RemoveField
(
model_name
=
'song'
,
name
=
'album'
,
),
migrations
.
RemoveField
(
model_name
=
'song'
,
name
=
'artist'
,
),
migrations
.
DeleteModel
(
name
=
'Album'
,
),
migrations
.
DeleteModel
(
name
=
'Artist'
,
),
migrations
.
DeleteModel
(
name
=
'Song'
,
),
]
lexchan_music/About/migrations/__pycache__/0003_remove_song_album_remove_song_artist_delete_album_and_more.cpython-39.pyc
0 → 100644
View file @
e0838b4d
File added
lexchan_music/Homepage/__pycache__/models.cpython-39.pyc
View file @
e0838b4d
No preview for this file type
lexchan_music/Homepage/migrations/0001_initial.py
0 → 100644
View file @
e0838b4d
# Generated by Django 4.1.6 on 2023-02-13 14:16
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
.
TextField
()),
(
'description'
,
models
.
TextField
()),
(
'release_date'
,
models
.
DateField
()),
],
),
migrations
.
CreateModel
(
name
=
'Artist'
,
fields
=
[
(
'id'
,
models
.
BigAutoField
(
auto_created
=
True
,
primary_key
=
True
,
serialize
=
False
,
verbose_name
=
'ID'
)),
(
'artist_name'
,
models
.
TextField
()),
(
'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
.
TextField
()),
(
'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'
),
),
]
lexchan_music/Homepage/migrations/__pycache__/0001_initial.cpython-39.pyc
0 → 100644
View file @
e0838b4d
File added
lexchan_music/db.sqlite3
View file @
e0838b4d
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