# Generated by Django 5.2.12 on 2026-05-20 18:35

from django.db import migrations, models


class Migration(migrations.Migration):

    dependencies = [
        ('core', '0020_siteconfig_manual_whatsapp'),
    ]

    operations = [
        migrations.AddField(
            model_name='siteconfiguration',
            name='recaptcha_enabled',
            field=models.BooleanField(default=False, help_text='Show Google reCAPTCHA v2 widget on the login page.'),
        ),
        migrations.AddField(
            model_name='siteconfiguration',
            name='recaptcha_secret_key',
            field=models.CharField(blank=True, help_text='reCAPTCHA v2 Secret Key (private). Never share this publicly.', max_length=200),
        ),
        migrations.AddField(
            model_name='siteconfiguration',
            name='recaptcha_site_key',
            field=models.CharField(blank=True, help_text='reCAPTCHA v2 Site Key (public). Get it from https://www.google.com/recaptcha/admin', max_length=200),
        ),
    ]
