# Generated by Django 5.2.4 on 2025-08-22 11:22

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


class Migration(migrations.Migration):

    dependencies = [
        ('companies', '0004_remove_company_sales_timing_salestiming'),
    ]

    operations = [
        migrations.RemoveField(
            model_name='company',
            name='catch_phrases',
        ),
        migrations.CreateModel(
            name='CatchPhrase',
            fields=[
                ('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
                ('created_at', models.DateTimeField(auto_now_add=True)),
                ('updated_at', models.DateTimeField(auto_now=True)),
                ('phrase', models.CharField(help_text='Short catch phrase', max_length=255)),
                ('company', models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, related_name='catch_phrases', to='companies.company')),
            ],
            options={
                'verbose_name_plural': 'Catch Phrases',
                'ordering': ['company', 'phrase'],
            },
        ),
    ]
