# Generated by Django 5.2.11 on 2026-04-26 16:12

from django.db import migrations, models


class Migration(migrations.Migration):

    dependencies = [
        ('core', '0019_siteconfiguration_manual_gateway'),
    ]

    operations = [
        migrations.AddField(
            model_name='siteconfiguration',
            name='manual_whatsapp_number',
            field=models.CharField(blank=True, help_text='WhatsApp number to receive payment proof (include country code e.g. 2348012345678). If provided, a WhatsApp button will appear on the checkout page.', max_length=20),
        ),
    ]
