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
2b41de92
Commit
2b41de92
authored
Feb 20, 2023
by
Lex Philip Gabriel D. Chan
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
updated models to add attributes
parent
e0838b4d
Changes
5
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
85 additions
and
6 deletions
+85
-6
models.cpython-39.pyc
lexchan_music/Homepage/__pycache__/models.cpython-39.pyc
+0
-0
0002_album_label_album_song_count_artist_bio_and_more.py
.../0002_album_label_album_song_count_artist_bio_and_more.py
+73
-0
0002_album_label_album_song_count_artist_bio_and_more.cpython-39.pyc
...label_album_song_count_artist_bio_and_more.cpython-39.pyc
+0
-0
models.py
lexchan_music/Homepage/models.py
+12
-6
db.sqlite3
lexchan_music/db.sqlite3
+0
-0
No files found.
lexchan_music/Homepage/__pycache__/models.cpython-39.pyc
View file @
2b41de92
No preview for this file type
lexchan_music/Homepage/migrations/0002_album_label_album_song_count_artist_bio_and_more.py
0 → 100644
View file @
2b41de92
# Generated by Django 4.1.6 on 2023-02-20 07:23
from
django.db
import
migrations
,
models
class
Migration
(
migrations
.
Migration
):
dependencies
=
[
(
'Homepage'
,
'0001_initial'
),
]
operations
=
[
migrations
.
AddField
(
model_name
=
'album'
,
name
=
'label'
,
field
=
models
.
TextField
(
default
=
''
),
),
migrations
.
AddField
(
model_name
=
'album'
,
name
=
'song_count'
,
field
=
models
.
IntegerField
(
default
=
0
),
),
migrations
.
AddField
(
model_name
=
'artist'
,
name
=
'bio'
,
field
=
models
.
TextField
(
default
=
''
,
max_length
=
700
),
),
migrations
.
AddField
(
model_name
=
'artist'
,
name
=
'birth_name'
,
field
=
models
.
TextField
(
default
=
''
),
),
migrations
.
AddField
(
model_name
=
'song'
,
name
=
'lyrics'
,
field
=
models
.
TextField
(
default
=
''
),
),
migrations
.
AddField
(
model_name
=
'song'
,
name
=
'music_video'
,
field
=
models
.
BooleanField
(
default
=
False
),
),
migrations
.
AlterField
(
model_name
=
'album'
,
name
=
'album_name'
,
field
=
models
.
TextField
(
default
=
''
),
),
migrations
.
AlterField
(
model_name
=
'album'
,
name
=
'description'
,
field
=
models
.
TextField
(
default
=
''
),
),
migrations
.
AlterField
(
model_name
=
'artist'
,
name
=
'artist_name'
,
field
=
models
.
TextField
(
default
=
''
),
),
migrations
.
AlterField
(
model_name
=
'artist'
,
name
=
'monthly_listeners'
,
field
=
models
.
IntegerField
(
default
=
0
),
),
migrations
.
AlterField
(
model_name
=
'song'
,
name
=
'song_length'
,
field
=
models
.
IntegerField
(
default
=
0
),
),
migrations
.
AlterField
(
model_name
=
'song'
,
name
=
'song_title'
,
field
=
models
.
TextField
(
default
=
''
),
),
]
lexchan_music/Homepage/migrations/__pycache__/0002_album_label_album_song_count_artist_bio_and_more.cpython-39.pyc
0 → 100644
View file @
2b41de92
File added
lexchan_music/Homepage/models.py
View file @
2b41de92
from
django.db
import
models
class
Artist
(
models
.
Model
):
artist_name
=
models
.
TextField
()
monthly_listeners
=
models
.
IntegerField
()
artist_name
=
models
.
TextField
(
default
=
""
)
monthly_listeners
=
models
.
IntegerField
(
default
=
0
)
birth_name
=
models
.
TextField
(
default
=
""
)
bio
=
models
.
TextField
(
max_length
=
700
,
default
=
""
)
class
Album
(
models
.
Model
):
album_name
=
models
.
TextField
()
album_name
=
models
.
TextField
(
default
=
""
)
artist
=
models
.
ForeignKey
(
Artist
,
on_delete
=
models
.
CASCADE
)
description
=
models
.
TextField
()
description
=
models
.
TextField
(
default
=
""
)
release_date
=
models
.
DateField
()
label
=
models
.
TextField
(
default
=
""
)
song_count
=
models
.
IntegerField
(
default
=
0
)
class
Song
(
models
.
Model
):
song_title
=
models
.
TextField
()
song_title
=
models
.
TextField
(
default
=
""
)
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
song_length
=
models
.
IntegerField
(
default
=
0
)
music_video
=
models
.
BooleanField
(
default
=
False
)
lyrics
=
models
.
TextField
(
default
=
""
)
\ No newline at end of file
lexchan_music/db.sqlite3
View file @
2b41de92
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