Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
J
janenzosalvador_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
Jan Enzo Salvador
janenzosalvador_music
Commits
c3b2a05a
Commit
c3b2a05a
authored
Feb 20, 2023
by
Jan Enzo Salvador
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Set the Artist.bio maximum length of text to 700
parent
d33a809c
Pipeline
#2814
failed with stages
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
models.py
janenzosalvador_music/Homepage/models.py
+1
-1
No files found.
janenzosalvador_music/Homepage/models.py
View file @
c3b2a05a
...
@@ -4,7 +4,7 @@ class Artist(models.Model):
...
@@ -4,7 +4,7 @@ class Artist(models.Model):
artist_name
=
models
.
CharField
(
max_length
=
50
,
default
=
""
)
artist_name
=
models
.
CharField
(
max_length
=
50
,
default
=
""
)
monthly_listeners
=
models
.
IntegerField
(
default
=
0
)
monthly_listeners
=
models
.
IntegerField
(
default
=
0
)
birth_name
=
models
.
CharField
(
max_length
=
50
,
default
=
""
)
birth_name
=
models
.
CharField
(
max_length
=
50
,
default
=
""
)
bio
=
models
.
TextField
(
default
=
""
)
bio
=
models
.
TextField
(
max_length
=
700
,
default
=
""
)
class
Album
(
models
.
Model
):
class
Album
(
models
.
Model
):
album_name
=
models
.
CharField
(
max_length
=
50
,
default
=
""
)
album_name
=
models
.
CharField
(
max_length
=
50
,
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