18 lines
432 B
Python
18 lines
432 B
Python
# Generated by Django 3.2.13 on 2023-02-14 14:15
|
|
|
|
from django.db import migrations
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('assignments', '0015_alter_assignment_options'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterModelOptions(
|
|
name='assignment',
|
|
options={'ordering': ['-created'], 'verbose_name': 'assignment', 'verbose_name_plural': 'assignments'},
|
|
),
|
|
]
|