blob: 887e4c51d19a99f832b7eaebc250b632cb8b8ae6 (
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-12-03 15:08
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('gtd', '0023_alter_gtdproject_project_type'),
]
operations = [
migrations.AlterField(
model_name='gtdnote',
name='status',
field=models.SmallIntegerField(choices=[(0, 'None'), (1, 'Open'), (2, 'Completed')], default=0),
),
]
|