Skip to content

Commit

Permalink
Merge pull request #86 from SADiLaR/feature/user-experience
Browse files Browse the repository at this point in the history
user experience migrations
  • Loading branch information
OnaMosimege authored Jul 3, 2024
2 parents b9830d5 + 9c54918 commit d77a34b
Showing 1 changed file with 31 additions and 0 deletions.
31 changes: 31 additions & 0 deletions app/general/migrations/0011_alter_documentfile_options_and_more.py
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'),
),
]

0 comments on commit d77a34b

Please sign in to comment.