# Generated by Django 5.2.5 on 2025-10-29 19:59

from django.db import migrations, models


class Migration(migrations.Migration):

    dependencies = [
        ('company', '0003_workingtimepolicy_burnout_detection_enabled_and_more'),
    ]

    operations = [
        migrations.AddField(
            model_name='company',
            name='api_endpoint',
            field=models.URLField(blank=True, help_text='API endpoint URL for user authentication (e.g., https://api.example.com/auth/login)', max_length=500, null=True),
        ),
    ]
