23 lines
638 B
Python
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')},
|
|
),
|
|
]
|