summaryrefslogtreecommitdiff
path: root/app/gtd/migrations/0015_rename_plan_gtdnote_work_plan.py
blob: b37884860bba03658ff9e042ec81810a68e761e5 (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-17 09:15

from django.db import migrations


class Migration(migrations.Migration):

    dependencies = [
        ('gtd', '0014_gtdnote_plan_gtdnote_work_status'),
    ]

    operations = [
        migrations.RenameField(
            model_name='gtdnote',
            old_name='plan',
            new_name='work_plan',
        ),
    ]