blob: 67eeffd563e19dde0c584d19837035c4b3cc7ab8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
# Generated by Django 4.2.7 on 2023-11-14 09:58
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('gtd', '0002_alter_gtdnote_reminder'),
]
operations = [
migrations.AlterField(
model_name='gtdnote',
name='date_completed',
field=models.DateField(blank=True, null=True),
),
]
|