added parent is_productive field
This commit is contained in:
18
dispatcher/migrations/0007_parent_is_productive.py
Normal file
18
dispatcher/migrations/0007_parent_is_productive.py
Normal file
@ -0,0 +1,18 @@
|
||||
# Generated by Django 5.1.5 on 2025-02-02 16:35
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('dispatcher', '0006_alter_parent_project_num'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AddField(
|
||||
model_name='parent',
|
||||
name='is_productive',
|
||||
field=models.BooleanField(default=False),
|
||||
),
|
||||
]
|
@ -0,0 +1,38 @@
|
||||
# Generated by Django 5.1.5 on 2025-02-02 17:36
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('dispatcher', '0007_parent_is_productive'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AlterField(
|
||||
model_name='clocking',
|
||||
name='in_am',
|
||||
field=models.TimeField(default=None, null=True, verbose_name='Clock in AM'),
|
||||
),
|
||||
migrations.AlterField(
|
||||
model_name='clocking',
|
||||
name='in_pm',
|
||||
field=models.TimeField(default=None, null=True, verbose_name='Clock in PM'),
|
||||
),
|
||||
migrations.AlterField(
|
||||
model_name='clocking',
|
||||
name='out_am',
|
||||
field=models.TimeField(default=None, null=True, verbose_name='Clock out AM'),
|
||||
),
|
||||
migrations.AlterField(
|
||||
model_name='clocking',
|
||||
name='out_pm',
|
||||
field=models.TimeField(default=None, null=True, verbose_name='Clock out PM'),
|
||||
),
|
||||
migrations.AlterField(
|
||||
model_name='parent',
|
||||
name='project_num',
|
||||
field=models.CharField(blank=True, max_length=32, verbose_name='Project number'),
|
||||
),
|
||||
]
|
Reference in New Issue
Block a user