-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #86 from SADiLaR/feature/user-experience
user experience migrations
- Loading branch information
Showing
1 changed file
with
31 additions
and
0 deletions.
There are no files selected for viewing
31 changes: 31 additions & 0 deletions
31
app/general/migrations/0011_alter_documentfile_options_and_more.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,31 @@ | ||
# Generated by Django 5.0.2 on 2024-07-02 05:18 | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
('general', '00010_documentfile_search_vector_trigger'), | ||
] | ||
|
||
operations = [ | ||
migrations.AlterModelOptions( | ||
name='documentfile', | ||
options={'verbose_name': 'Document', 'verbose_name_plural': 'Documents'}, | ||
), | ||
migrations.AlterModelOptions( | ||
name='historicaldocumentfile', | ||
options={'get_latest_by': ('history_date', 'history_id'), 'ordering': ('-history_date', '-history_id'), 'verbose_name': 'historical Document', 'verbose_name_plural': 'historical Documents'}, | ||
), | ||
migrations.AlterField( | ||
model_name='documentfile', | ||
name='document_type', | ||
field=models.CharField(choices=[('Glossary', 'Glossary'), ('Policy', 'Policy')], max_length=200, verbose_name='document category'), | ||
), | ||
migrations.AlterField( | ||
model_name='historicaldocumentfile', | ||
name='document_type', | ||
field=models.CharField(choices=[('Glossary', 'Glossary'), ('Policy', 'Policy')], max_length=200, verbose_name='document category'), | ||
), | ||
] |