# Generated by Django 5.2.6 on 2025-09-16 12:46

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


class Migration(migrations.Migration):

    dependencies = [
        ('apps_', '0003_alter_app_company'),
    ]

    operations = [
        migrations.CreateModel(
            name='ReviewPageBranding',
            fields=[
                ('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
                ('logo', models.URLField(blank=True, null=True)),
                ('headline', models.CharField(default='Share your feedback', max_length=255)),
                ('subtext', models.TextField(blank=True, default='We value your opinion')),
                ('thank_you_message', models.TextField(blank=True, default='Thank you for your review!')),
                ('redirect_url', models.URLField(blank=True, null=True)),
                ('google_link', models.URLField(blank=True, null=True)),
                ('tripadvisor_link', models.URLField(blank=True, null=True)),
                ('updated_at', models.DateTimeField(auto_now=True)),
                ('app', models.OneToOneField(on_delete=django.db.models.deletion.CASCADE, related_name='branding', to='apps_.app')),
            ],
        ),
    ]
