summaryrefslogtreecommitdiff
path: root/app/gtd/migrations/0002_alter_gtdnote_reminder.py
blob: c6266253540f814b4943ee70362d30defecd6eb6 (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', '0001_initial'),
    ]

    operations = [
        migrations.AlterField(
            model_name='gtdnote',
            name='reminder',
            field=models.BigIntegerField(blank=True, help_text='In days', null=True),
        ),
    ]