# Generated by Django 6.0.5 on 2026-06-17 12:27

from django.db import migrations, models


class Migration(migrations.Migration):

    dependencies = [
        ('core', '0001_initial'),
    ]

    operations = [
        migrations.CreateModel(
            name='SupportContact',
            fields=[
                ('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
                ('whatsapp_number', models.CharField(blank=True, help_text='E.164 format, e.g. +971501234567', max_length=30)),
                ('instagram_handle', models.CharField(blank=True, help_text='Without the @, e.g. rofoof_app', max_length=50)),
                ('chat_url', models.URLField(blank=True, help_text='Link or deep-link to in-app/web chat')),
                ('phone_number', models.CharField(blank=True, help_text='E.164 format for tel: links', max_length=30)),
                ('email', models.EmailField(blank=True, help_text='Optional support email', max_length=254)),
                ('updated_at', models.DateTimeField(auto_now=True)),
            ],
            options={
                'verbose_name': 'Support Contact',
                'verbose_name_plural': 'Support Contact',
                'db_table': 'support_contact',
            },
        ),
        migrations.CreateModel(
            name='TermsPage',
            fields=[
                ('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
                ('content_en', models.TextField(help_text='Terms & Conditions in English')),
                ('content_ar', models.TextField(help_text='Terms & Conditions in Arabic')),
                ('version_label', models.CharField(blank=True, help_text='e.g. 1.0 — bumped on material changes', max_length=50)),
                ('updated_at', models.DateTimeField(auto_now=True)),
            ],
            options={
                'verbose_name': 'Terms & Conditions',
                'verbose_name_plural': 'Terms & Conditions',
                'db_table': 'terms_page',
            },
        ),
    ]
