Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
E
eldondagdag_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
Eldon Dagdag
eldondagdag_music
Commits
5d883345
Commit
5d883345
authored
Feb 20, 2023
by
Eldon Dagdag
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Populated Models
parent
94aab154
Changes
6
Show whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
29 additions
and
1 deletion
+29
-1
.gitignore
.gitignore
+1
-0
db.sqlite3
eldondagdag_music/db.sqlite3
+0
-0
models.cpython-310.pyc
...ndagdag_music/homepage/__pycache__/models.cpython-310.pyc
+0
-0
0003_alter_song_lyrics.py
...agdag_music/homepage/migrations/0003_alter_song_lyrics.py
+18
-0
0003_alter_song_lyrics.cpython-310.pyc
...ations/__pycache__/0003_alter_song_lyrics.cpython-310.pyc
+0
-0
models.py
eldondagdag_music/homepage/models.py
+10
-1
No files found.
.gitignore
0 → 100644
View file @
5d883345
eldondagdag_music/.env
\ No newline at end of file
eldondagdag_music/db.sqlite3
View file @
5d883345
No preview for this file type
eldondagdag_music/homepage/__pycache__/models.cpython-310.pyc
View file @
5d883345
No preview for this file type
eldondagdag_music/homepage/migrations/0003_alter_song_lyrics.py
0 → 100644
View file @
5d883345
# Generated by Django 3.2 on 2023-02-20 08:43
from
django.db
import
migrations
,
models
class
Migration
(
migrations
.
Migration
):
dependencies
=
[
(
'homepage'
,
'0002_auto_20230220_0717'
),
]
operations
=
[
migrations
.
AlterField
(
model_name
=
'song'
,
name
=
'lyrics'
,
field
=
models
.
TextField
(
blank
=
True
,
default
=
''
),
),
]
eldondagdag_music/homepage/migrations/__pycache__/0003_alter_song_lyrics.cpython-310.pyc
0 → 100644
View file @
5d883345
File added
eldondagdag_music/homepage/models.py
View file @
5d883345
...
@@ -6,6 +6,9 @@ class Artist(models.Model):
...
@@ -6,6 +6,9 @@ class Artist(models.Model):
monthly_listeners
=
models
.
IntegerField
(
default
=
0
)
monthly_listeners
=
models
.
IntegerField
(
default
=
0
)
bio
=
models
.
TextField
(
max_length
=
700
,
blank
=
True
,
default
=
""
)
bio
=
models
.
TextField
(
max_length
=
700
,
blank
=
True
,
default
=
""
)
def
__str__
(
self
):
return
'{}'
.
format
(
self
.
artist_name
)
class
Album
(
models
.
Model
):
class
Album
(
models
.
Model
):
album_name
=
models
.
CharField
(
max_length
=
255
,
default
=
""
)
album_name
=
models
.
CharField
(
max_length
=
255
,
default
=
""
)
artist
=
models
.
CharField
(
max_length
=
255
,
default
=
""
)
artist
=
models
.
CharField
(
max_length
=
255
,
default
=
""
)
...
@@ -14,11 +17,17 @@ class Album(models.Model):
...
@@ -14,11 +17,17 @@ class Album(models.Model):
label
=
models
.
CharField
(
max_length
=
255
,
default
=
""
)
label
=
models
.
CharField
(
max_length
=
255
,
default
=
""
)
song_count
=
models
.
IntegerField
(
default
=
0
)
song_count
=
models
.
IntegerField
(
default
=
0
)
def
__str__
(
self
):
return
'{}'
.
format
(
self
.
album_name
)
class
Song
(
models
.
Model
):
class
Song
(
models
.
Model
):
song_title
=
models
.
CharField
(
max_length
=
255
,
default
=
""
)
song_title
=
models
.
CharField
(
max_length
=
255
,
default
=
""
)
artist
=
models
.
CharField
(
max_length
=
255
,
default
=
""
)
artist
=
models
.
CharField
(
max_length
=
255
,
default
=
""
)
album
=
models
.
CharField
(
max_length
=
255
,
default
=
""
)
album
=
models
.
CharField
(
max_length
=
255
,
default
=
""
)
song_length
=
models
.
IntegerField
(
default
=
0
)
song_length
=
models
.
IntegerField
(
default
=
0
)
music_video
=
models
.
BooleanField
(
default
=
False
)
music_video
=
models
.
BooleanField
(
default
=
False
)
lyrics
=
models
.
TextField
(
default
=
""
)
lyrics
=
models
.
TextField
(
blank
=
True
,
default
=
""
)
def
__str__
(
self
):
return
'{}'
.
format
(
self
.
song_title
)
# Create your models here.
# Create your models here.
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