# Generated by Django 5.2.1 on 2025-05-24 06:55

import django.db.models.deletion
from django.db import migrations, models


class Migration(migrations.Migration):

    dependencies = [
        ('account', '0098_remove_attendancesummary_att_bg_and_more'),
    ]

    operations = [
        migrations.AddField(
            model_name='attendancesummaryoffr',
            name='company',
            field=models.ForeignKey(blank=True, null=True, on_delete=django.db.models.deletion.SET_NULL, to='account.company'),
        ),
        migrations.AddField(
            model_name='attendancesummaryoffr',
            name='date',
            field=models.DateField(blank=True, null=True),
        ),
        migrations.AddField(
            model_name='historicalattendancesummaryoffr',
            name='company',
            field=models.ForeignKey(blank=True, db_constraint=False, null=True, on_delete=django.db.models.deletion.DO_NOTHING, related_name='+', to='account.company'),
        ),
        migrations.AddField(
            model_name='historicalattendancesummaryoffr',
            name='date',
            field=models.DateField(blank=True, null=True),
        ),
    ]
