# Generated by Django 5.2.6 on 2025-09-19 13:33

import django.db.models.deletion
from django.db import migrations, models


class Migration(migrations.Migration):

    dependencies = [
        ('apps_', '0004_reviewpagebranding'),
        ('reviews', '0007_alter_review_unique_together'),
    ]

    operations = [
        migrations.CreateModel(
            name='BusinessPlatformLinks',
            fields=[
                ('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
                ('google_place_id', models.CharField(blank=True, help_text='Google My Business Place ID', max_length=255)),
                ('tripadvisor_location_id', models.CharField(blank=True, help_text='TripAdvisor Location ID', max_length=255)),
                ('booking_property_id', models.CharField(blank=True, help_text='Booking.com Property ID', max_length=255)),
                ('facebook_page_id', models.CharField(blank=True, help_text='Facebook Page ID', max_length=255)),
                ('business_name', models.CharField(blank=True, max_length=255)),
                ('business_address', models.TextField(blank=True)),
                ('created_at', models.DateTimeField(auto_now_add=True)),
                ('updated_at', models.DateTimeField(auto_now=True)),
                ('app', models.OneToOneField(on_delete=django.db.models.deletion.CASCADE, related_name='platform_links', to='apps_.app')),
            ],
        ),
    ]
