-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Increase character limit for artifact title and short description (#132)
We received lots of complaints about how short Trovi's title character limit was, so it is now updated to be a more reasonable length. With that, the short descriptions limit has been increased as well.
- Loading branch information
1 parent
faa0e56
commit 6fecb08
Showing
2 changed files
with
24 additions
and
2 deletions.
There are no files selected for viewing
22 changes: 22 additions & 0 deletions
22
trovi/migrations/0012_increase_title_and_short_description_length.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
# Generated by Django 4.1.4 on 2023-08-02 18:39 | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
dependencies = [ | ||
("trovi", "0011_artifact_role"), | ||
] | ||
|
||
operations = [ | ||
migrations.AlterField( | ||
model_name="artifact", | ||
name="short_description", | ||
field=models.CharField(max_length=200), | ||
), | ||
migrations.AlterField( | ||
model_name="artifact", | ||
name="title", | ||
field=models.CharField(max_length=140), | ||
), | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters