# Generated by Django 5.0.2 on 2025-12-03 17:31

from django.db import migrations, models


class Migration(migrations.Migration):

    dependencies = [
        ('payroll', '0001_initial'),
    ]

    operations = [
        migrations.AddField(
            model_name='payrollintegration',
            name='oauth_access_token',
            field=models.TextField(blank=True, help_text='OAuth access token obtained from API key exchange'),
        ),
        migrations.AddField(
            model_name='payrollintegration',
            name='oauth_api_key',
            field=models.TextField(blank=True, help_text='OAuth API Key obtained from authorization code exchange'),
        ),
        migrations.AddField(
            model_name='payrollintegration',
            name='oauth_token_expires_at',
            field=models.DateTimeField(blank=True, help_text='When the access token expires', null=True),
        ),
        migrations.AddField(
            model_name='payrollintegration',
            name='redirect_uri',
            field=models.URLField(blank=True, help_text='OAuth redirect URI (required for ProCounter)', null=True),
        ),
    ]
