# Generated by Django 5.2.7 on 2026-05-06 21:46

import django.db.models.deletion
from django.conf import settings
from django.db import migrations, models


class Migration(migrations.Migration):

    dependencies = [
        ("shop", "0024_profile_facebook_profile_instagram_profile_linkedin_and_more"),
        migrations.swappable_dependency(settings.AUTH_USER_MODEL),
    ]

    operations = [
        migrations.CreateModel(
            name="BanshixContact",
            fields=[
                (
                    "id",
                    models.BigAutoField(
                        auto_created=True,
                        primary_key=True,
                        serialize=False,
                        verbose_name="ID",
                    ),
                ),
                (
                    "phone",
                    models.CharField(
                        blank=True,
                        help_text="e.g. +2348012345678",
                        max_length=15,
                        null=True,
                    ),
                ),
                ("address", models.TextField(blank=True, null=True)),
                (
                    "facebook",
                    models.URLField(
                        blank=True, help_text="Facebook profile URL", null=True
                    ),
                ),
                (
                    "twitter",
                    models.URLField(
                        blank=True, help_text="Twitter/X profile URL", null=True
                    ),
                ),
                (
                    "instagram",
                    models.URLField(
                        blank=True, help_text="Instagram profile URL", null=True
                    ),
                ),
                (
                    "linkedin",
                    models.URLField(
                        blank=True, help_text="LinkedIn profile URL", null=True
                    ),
                ),
                (
                    "youtube",
                    models.URLField(
                        blank=True, help_text="YouTube profile URL", null=True
                    ),
                ),
                (
                    "emails",
                    models.JSONField(
                        blank=True, help_text="Email addresses", null=True
                    ),
                ),
                (
                    "whatsapp",
                    models.CharField(
                        blank=True,
                        help_text="WhatsApp number (e.g. +2348012345678)",
                        max_length=20,
                        null=True,
                    ),
                ),
                (
                    "user",
                    models.ForeignKey(
                        on_delete=django.db.models.deletion.CASCADE,
                        to=settings.AUTH_USER_MODEL,
                    ),
                ),
            ],
        ),
    ]
