Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
J
jmamador_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
John Michael T. Amador
jmamador_music
Commits
1a458312
Commit
1a458312
authored
Feb 13, 2023
by
John Michael T. Amador
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
finished models
parent
d3cc1932
Changes
7
Show whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
83 additions
and
1 deletion
+83
-1
models.cpython-39.pyc
jmamador_music/Homepage/__pycache__/models.cpython-39.pyc
+0
-0
0001_initial.py
jmamador_music/Homepage/migrations/0001_initial.py
+22
-0
0002_album.py
jmamador_music/Homepage/migrations/0002_album.py
+24
-0
0001_initial.cpython-39.pyc
...mepage/migrations/__pycache__/0001_initial.cpython-39.pyc
+0
-0
0002_album.cpython-39.pyc
...Homepage/migrations/__pycache__/0002_album.cpython-39.pyc
+0
-0
models.py
jmamador_music/Homepage/models.py
+37
-1
db.sqlite3
jmamador_music/db.sqlite3
+0
-0
No files found.
jmamador_music/Homepage/__pycache__/models.cpython-39.pyc
View file @
1a458312
No preview for this file type
jmamador_music/Homepage/migrations/0001_initial.py
0 → 100644
View file @
1a458312
# Generated by Django 4.1.6 on 2023-02-13 13:14
from
django.db
import
migrations
,
models
class
Migration
(
migrations
.
Migration
):
initial
=
True
dependencies
=
[
]
operations
=
[
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
()),
],
),
]
jmamador_music/Homepage/migrations/0002_album.py
0 → 100644
View file @
1a458312
# Generated by Django 4.1.6 on 2023-02-13 13:16
from
django.db
import
migrations
,
models
import
django.db.models.deletion
class
Migration
(
migrations
.
Migration
):
dependencies
=
[
(
'Homepage'
,
'0001_initial'
),
]
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
.
CharField
(
max_length
=
100
)),
(
'release_date'
,
models
.
CharField
(
max_length
=
50
)),
(
'artist'
,
models
.
ForeignKey
(
on_delete
=
django
.
db
.
models
.
deletion
.
CASCADE
,
to
=
'Homepage.artist'
)),
],
),
]
jmamador_music/Homepage/migrations/__pycache__/0001_initial.cpython-39.pyc
0 → 100644
View file @
1a458312
File added
jmamador_music/Homepage/migrations/__pycache__/0002_album.cpython-39.pyc
0 → 100644
View file @
1a458312
File added
jmamador_music/Homepage/models.py
View file @
1a458312
from
django.db
import
models
from
django.db
import
models
from
django.urls
import
reverse
# Create your models here.
class
Artist
(
models
.
Model
):
artist_name
=
models
.
CharField
(
max_length
=
50
)
monthly_listeners
=
models
.
IntegerField
()
def
__str__
(
self
):
return
'{}: {} listener(s)'
.
format
(
self
.
artist_name
,
self
.
monthly_listeners
)
def
get_absolute_url
(
self
):
return
reverse
(
'subject_detail'
,
args
=
[
str
(
self
.
artist_name
)])
class
Album
(
models
.
Model
):
album_name
=
models
.
CharField
(
max_length
=
50
)
artist
=
models
.
ForeignKey
(
Artist
,
on_delete
=
models
.
CASCADE
)
description
=
models
.
CharField
(
max_length
=
100
)
release_date
=
models
.
CharField
(
max_length
=
50
)
def
__str__
(
self
):
return
'{}: {}: {}" {}'
.
format
(
self
.
album_name
,
self
.
artist
,
self
.
description
,
self
.
release_date
)
def
get_absolute_url
(
self
):
return
reverse
(
'subject_detail'
,
args
=
[
str
(
self
.
album_name
)])
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
.
CharField
(
max_length
=
50
)
def
__str__
(
self
):
return
'{}: {}: {}" {} second(s)'
.
format
(
self
.
song_title
,
self
.
artist
,
self
.
album
,
self
.
song_length
)
def
get_absolute_url
(
self
):
return
reverse
(
'subject_detail'
,
args
=
[
str
(
self
.
song_title
)])
jmamador_music/db.sqlite3
View file @
1a458312
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