added clockings edit + auto calculations
This commit is contained in:
25
dispatcher/migrations/0005_clocking.py
Normal file
25
dispatcher/migrations/0005_clocking.py
Normal file
@ -0,0 +1,25 @@
|
||||
# Generated by Django 5.1.5 on 2025-01-31 17:56
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('dispatcher', '0004_task_unique_daily_task'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.CreateModel(
|
||||
name='Clocking',
|
||||
fields=[
|
||||
('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
|
||||
('date', models.DateField()),
|
||||
('in_am', models.TimeField(default=None, null=True)),
|
||||
('out_am', models.TimeField(default=None, null=True)),
|
||||
('in_pm', models.TimeField(default=None, null=True)),
|
||||
('out_pm', models.TimeField(default=None, null=True)),
|
||||
('remote', models.TimeField(default=None, null=True)),
|
||||
],
|
||||
),
|
||||
]
|
Reference in New Issue
Block a user