Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
N
nicsdevega_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
Nics De Vega
nicsdevega_music
Commits
3dacf159
Commit
3dacf159
authored
Feb 20, 2023
by
Nics De Vega
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
modified models
parent
d67da527
Changes
15
Hide whitespace changes
Inline
Side-by-side
Showing
15 changed files
with
169 additions
and
6 deletions
+169
-6
db.sqlite3
nicsdevega_music/db.sqlite3
+0
-0
models.cpython-39.pyc
nicsdevega_music/homepage/__pycache__/models.cpython-39.pyc
+0
-0
0002_album_song_count_artist_bio_artist_birth_name_and_more.py
...album_song_count_artist_bio_artist_birth_name_and_more.py
+68
-0
0003_alter_album_song_count.py
..._music/homepage/migrations/0003_alter_album_song_count.py
+18
-0
0004_alter_album_song_count.py
..._music/homepage/migrations/0004_alter_album_song_count.py
+18
-0
0005_alter_album_song_count.py
..._music/homepage/migrations/0005_alter_album_song_count.py
+18
-0
0006_alter_album_song_count.py
..._music/homepage/migrations/0006_alter_album_song_count.py
+18
-0
0007_alter_album_song_count.py
..._music/homepage/migrations/0007_alter_album_song_count.py
+18
-0
0002_album_song_count_artist_bio_artist_birth_name_and_more.cpython-39.pyc
...ount_artist_bio_artist_birth_name_and_more.cpython-39.pyc
+0
-0
0003_alter_album_song_count.cpython-39.pyc
...ns/__pycache__/0003_alter_album_song_count.cpython-39.pyc
+0
-0
0004_alter_album_song_count.cpython-39.pyc
...ns/__pycache__/0004_alter_album_song_count.cpython-39.pyc
+0
-0
0005_alter_album_song_count.cpython-39.pyc
...ns/__pycache__/0005_alter_album_song_count.cpython-39.pyc
+0
-0
0006_alter_album_song_count.cpython-39.pyc
...ns/__pycache__/0006_alter_album_song_count.cpython-39.pyc
+0
-0
0007_alter_album_song_count.cpython-39.pyc
...ns/__pycache__/0007_alter_album_song_count.cpython-39.pyc
+0
-0
models.py
nicsdevega_music/homepage/models.py
+11
-6
No files found.
nicsdevega_music/db.sqlite3
View file @
3dacf159
No preview for this file type
nicsdevega_music/homepage/__pycache__/models.cpython-39.pyc
View file @
3dacf159
No preview for this file type
nicsdevega_music/homepage/migrations/0002_album_song_count_artist_bio_artist_birth_name_and_more.py
0 → 100644
View file @
3dacf159
# Generated by Django 4.1.6 on 2023-02-20 07:29
from
django.db
import
migrations
,
models
class
Migration
(
migrations
.
Migration
):
dependencies
=
[
(
'homepage'
,
'0001_initial'
),
]
operations
=
[
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
.
CharField
(
default
=
''
,
max_length
=
100
,
unique
=
True
),
),
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
.
CharField
(
default
=
''
,
max_length
=
100
),
),
migrations
.
AlterField
(
model_name
=
'album'
,
name
=
'description'
,
field
=
models
.
TextField
(
default
=
''
,
max_length
=
700
),
),
migrations
.
AlterField
(
model_name
=
'artist'
,
name
=
'artist_name'
,
field
=
models
.
CharField
(
default
=
''
,
max_length
=
100
,
unique
=
True
),
),
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
.
CharField
(
default
=
''
,
max_length
=
100
),
),
]
nicsdevega_music/homepage/migrations/0003_alter_album_song_count.py
0 → 100644
View file @
3dacf159
# Generated by Django 4.1.6 on 2023-02-20 07:29
from
django.db
import
migrations
,
models
class
Migration
(
migrations
.
Migration
):
dependencies
=
[
(
'homepage'
,
'0002_album_song_count_artist_bio_artist_birth_name_and_more'
),
]
operations
=
[
migrations
.
AlterField
(
model_name
=
'album'
,
name
=
'song_count'
,
field
=
models
.
IntegerField
(
default
=
0
),
),
]
nicsdevega_music/homepage/migrations/0004_alter_album_song_count.py
0 → 100644
View file @
3dacf159
# Generated by Django 4.1.6 on 2023-02-20 07:32
from
django.db
import
migrations
,
models
class
Migration
(
migrations
.
Migration
):
dependencies
=
[
(
'homepage'
,
'0003_alter_album_song_count'
),
]
operations
=
[
migrations
.
AlterField
(
model_name
=
'album'
,
name
=
'song_count'
,
field
=
models
.
IntegerField
(),
),
]
nicsdevega_music/homepage/migrations/0005_alter_album_song_count.py
0 → 100644
View file @
3dacf159
# Generated by Django 4.1.6 on 2023-02-20 07:33
from
django.db
import
migrations
,
models
class
Migration
(
migrations
.
Migration
):
dependencies
=
[
(
'homepage'
,
'0004_alter_album_song_count'
),
]
operations
=
[
migrations
.
AlterField
(
model_name
=
'album'
,
name
=
'song_count'
,
field
=
models
.
IntegerField
(
default
=
0
),
),
]
nicsdevega_music/homepage/migrations/0006_alter_album_song_count.py
0 → 100644
View file @
3dacf159
# Generated by Django 4.1.6 on 2023-02-20 07:36
from
django.db
import
migrations
,
models
class
Migration
(
migrations
.
Migration
):
dependencies
=
[
(
'homepage'
,
'0005_alter_album_song_count'
),
]
operations
=
[
migrations
.
AlterField
(
model_name
=
'album'
,
name
=
'song_count'
,
field
=
models
.
IntegerField
(),
),
]
nicsdevega_music/homepage/migrations/0007_alter_album_song_count.py
0 → 100644
View file @
3dacf159
# Generated by Django 4.1.6 on 2023-02-20 07:36
from
django.db
import
migrations
,
models
class
Migration
(
migrations
.
Migration
):
dependencies
=
[
(
'homepage'
,
'0006_alter_album_song_count'
),
]
operations
=
[
migrations
.
AlterField
(
model_name
=
'album'
,
name
=
'song_count'
,
field
=
models
.
IntegerField
(
default
=
0
),
),
]
nicsdevega_music/homepage/migrations/__pycache__/0002_album_song_count_artist_bio_artist_birth_name_and_more.cpython-39.pyc
0 → 100644
View file @
3dacf159
File added
nicsdevega_music/homepage/migrations/__pycache__/0003_alter_album_song_count.cpython-39.pyc
0 → 100644
View file @
3dacf159
File added
nicsdevega_music/homepage/migrations/__pycache__/0004_alter_album_song_count.cpython-39.pyc
0 → 100644
View file @
3dacf159
File added
nicsdevega_music/homepage/migrations/__pycache__/0005_alter_album_song_count.cpython-39.pyc
0 → 100644
View file @
3dacf159
File added
nicsdevega_music/homepage/migrations/__pycache__/0006_alter_album_song_count.cpython-39.pyc
0 → 100644
View file @
3dacf159
File added
nicsdevega_music/homepage/migrations/__pycache__/0007_alter_album_song_count.cpython-39.pyc
0 → 100644
View file @
3dacf159
File added
nicsdevega_music/homepage/models.py
View file @
3dacf159
from
django.db
import
models
class
Artist
(
models
.
Model
):
artist_name
=
models
.
TextField
()
monthly_listeners
=
models
.
IntegerField
()
artist_name
=
models
.
CharField
(
max_length
=
100
,
unique
=
True
,
default
=
""
)
birth_name
=
models
.
CharField
(
max_length
=
100
,
unique
=
True
,
default
=
""
)
bio
=
models
.
TextField
(
max_length
=
700
,
default
=
""
)
monthly_listeners
=
models
.
IntegerField
(
default
=
0
)
class
Album
(
models
.
Model
):
album_name
=
models
.
TextField
(
)
album_name
=
models
.
CharField
(
max_length
=
100
,
default
=
""
)
artist
=
models
.
ForeignKey
(
Artist
,
on_delete
=
models
.
CASCADE
)
description
=
models
.
TextField
()
description
=
models
.
TextField
(
max_length
=
700
,
default
=
""
)
release_date
=
models
.
DateField
()
song_count
=
models
.
IntegerField
(
default
=
0
)
class
Song
(
models
.
Model
):
song_title
=
models
.
TextField
(
)
song_title
=
models
.
CharField
(
max_length
=
100
,
default
=
""
)
artist
=
models
.
ForeignKey
(
Artist
,
on_delete
=
models
.
CASCADE
)
album
=
models
.
ForeignKey
(
Album
,
on_delete
=
models
.
CASCADE
)
song_length
=
models
.
IntegerField
()
song_length
=
models
.
IntegerField
(
default
=
0
)
music_video
=
models
.
BooleanField
(
default
=
False
)
lyrics
=
models
.
TextField
(
default
=
""
)
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