18 lines
402 B
Python
18 lines
402 B
Python
# Generated by Django 3.2.20 on 2023-08-17 13:14
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
dependencies = [
|
|
("duedate", "0001_initial"),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name="duedate",
|
|
name="start",
|
|
field=models.DateTimeField(blank=True, db_index=True, null=True),
|
|
),
|
|
]
|