21 lines
648 B
Python
21 lines
648 B
Python
# Generated by Django 6.0 on 2026-01-08 10:05
|
|
|
|
import django.db.models.deletion
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('complaints', '0003_inquiryattachment_inquiryupdate'),
|
|
('px_sources', '0002_remove_pxsource_color_code_and_more'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name='complaint',
|
|
name='source',
|
|
field=models.ForeignKey(blank=True, help_text='Source of the complaint', null=True, on_delete=django.db.models.deletion.PROTECT, related_name='complaints', to='px_sources.pxsource'),
|
|
),
|
|
]
|