This repository has been archived on 2025-03-03. You can view files and clone it, but cannot push or open issues or pull requests.
facturio/subjects/migrations/0003_alter_subject_options.py

16 lines
418 B
Python
Raw Normal View History

2024-02-03 21:54:05 +01:00
# Generated by Django 5.0.1 on 2024-01-29 21:06
from django.db import migrations
class Migration(migrations.Migration):
dependencies = [
2024-02-03 22:07:20 +01:00
('subjects', '0002_alter_subject_city_alter_subject_city_part_and_more'),
2024-02-03 21:54:05 +01:00
]
operations = [
migrations.AlterModelOptions(
2024-02-03 22:07:20 +01:00
name='subject',
options={'verbose_name': 'Subject', 'verbose_name_plural': 'Subjects'},
2024-02-03 21:54:05 +01:00
),
]