Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
A
anchisilang_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
Anchilla Vera Marie Silang
anchisilang_music
Commits
e39d0cf1
Commit
e39d0cf1
authored
Feb 21, 2023
by
Anchilla Vera Marie Silang
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Allowed Empty Fields
parent
60b3a21d
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
2 additions
and
2 deletions
+2
-2
admin.cpython-38.pyc
anchisilang_music/homepage/__pycache__/admin.cpython-38.pyc
+0
-0
models.cpython-38.pyc
anchisilang_music/homepage/__pycache__/models.cpython-38.pyc
+0
-0
models.py
anchisilang_music/homepage/models.py
+2
-2
No files found.
anchisilang_music/homepage/__pycache__/admin.cpython-38.pyc
View file @
e39d0cf1
No preview for this file type
anchisilang_music/homepage/__pycache__/models.cpython-38.pyc
View file @
e39d0cf1
No preview for this file type
anchisilang_music/homepage/models.py
View file @
e39d0cf1
...
...
@@ -4,7 +4,7 @@ from django.urls import reverse
# Create your models here.
class
Artist
(
models
.
Model
):
artist_name
=
models
.
CharField
(
max_length
=
50
)
birth_name
=
models
.
TextField
()
birth_name
=
models
.
TextField
(
blank
=
True
,
null
=
True
)
monthly_listeners
=
models
.
IntegerField
()
bio
=
models
.
CharField
(
max_length
=
700
)
...
...
@@ -12,7 +12,7 @@ class Album(models.Model):
album_name
=
models
.
CharField
(
max_length
=
50
)
artist
=
models
.
CharField
(
max_length
=
50
)
description
=
models
.
TextField
()
release_date
=
models
.
Date
Time
Field
()
release_date
=
models
.
DateField
()
label
=
models
.
TextField
()
song_count
=
models
.
IntegerField
()
...
...
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