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
adec85a4
Commit
adec85a4
authored
Feb 13, 2023
by
Eldon Dagdag
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Created Artist, Album, and Song Models
parent
10575b03
Pipeline
#2648
failed with stages
Changes
5
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
57 additions
and
0 deletions
+57
-0
models.cpython-310.pyc
eldondagdag_music/about/__pycache__/models.cpython-310.pyc
+0
-0
0001_initial.py
eldondagdag_music/about/migrations/0001_initial.py
+42
-0
0001_initial.cpython-310.pyc
...about/migrations/__pycache__/0001_initial.cpython-310.pyc
+0
-0
models.py
eldondagdag_music/about/models.py
+15
-0
db.sqlite3
eldondagdag_music/db.sqlite3
+0
-0
No files found.
eldondagdag_music/about/__pycache__/models.cpython-310.pyc
View file @
adec85a4
No preview for this file type
eldondagdag_music/about/migrations/0001_initial.py
0 → 100644
View file @
adec85a4
# Generated by Django 3.2 on 2023-02-13 10:07
from
django.db
import
migrations
,
models
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
.
CharField
(
max_length
=
100
)),
(
'artist'
,
models
.
CharField
(
max_length
=
100
)),
(
'description'
,
models
.
CharField
(
max_length
=
500
)),
(
'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
.
CharField
(
max_length
=
100
)),
(
'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
.
CharField
(
max_length
=
100
)),
(
'artist'
,
models
.
CharField
(
max_length
=
100
)),
(
'album'
,
models
.
CharField
(
max_length
=
100
)),
(
'song_length'
,
models
.
IntegerField
()),
],
),
]
eldondagdag_music/about/migrations/__pycache__/0001_initial.cpython-310.pyc
0 → 100644
View file @
adec85a4
File added
eldondagdag_music/about/models.py
View file @
adec85a4
from
django.db
import
models
from
django.db
import
models
class
Artist
(
models
.
Model
):
artist_name
=
models
.
CharField
(
max_length
=
100
)
monthly_listeners
=
models
.
IntegerField
()
class
Album
(
models
.
Model
):
album_name
=
models
.
CharField
(
max_length
=
100
)
artist
=
models
.
CharField
(
max_length
=
100
)
description
=
models
.
CharField
(
max_length
=
500
)
release_date
=
models
.
DateField
()
class
Song
(
models
.
Model
):
song_title
=
models
.
CharField
(
max_length
=
100
)
artist
=
models
.
CharField
(
max_length
=
100
)
album
=
models
.
CharField
(
max_length
=
100
)
song_length
=
models
.
IntegerField
()
# Create your models here.
# Create your models here.
eldondagdag_music/db.sqlite3
View file @
adec85a4
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