38086-vm/hr/migrations/0003_employee_biometric_id_and_more.py
2026-02-05 13:35:04 +00:00

23 lines
638 B
Python

# Generated by Django 5.2.7 on 2026-02-05 13:31
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('hr', '0002_biometricdevice_attendance_device'),
]
operations = [
migrations.AddField(
model_name='employee',
name='biometric_id',
field=models.IntegerField(blank=True, help_text='The User ID used on the attendance device', null=True, verbose_name='Biometric Device ID'),
),
migrations.AlterUniqueTogether(
name='attendance',
unique_together={('employee', 'date')},
),
]