1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
# Generated by Django 4.2.7 on 2023-11-17 16:33
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('gtd', '0017_alter_gtdnote_note_type_alter_gtdnote_status_and_more'),
]
operations = [
migrations.AlterField(
model_name='gtdnote',
name='work_status',
field=models.SmallIntegerField(blank=True, choices=[(0, 'Call In'), (1, 'Asked For'), (2, 'Coming'), (3, 'Testing'), (4, 'Done'), (5, 'Live')], null=True),
),
migrations.AlterField(
model_name='gtdproject',
name='project_type',
field=models.IntegerField(choices=[(0, 'wired'), (1, 'lbh'), (2, 'lxf'), (3, 'personal')], default=2),
),
]
|