Fixes: 1) Fix email validation to properly handle `self.instance` checks in serializers; Extra: 1) Remove unnecessary blank lines and reformat code for better readability; 2) Consolidate migration field definitions to a single line for cleaner diff;
16 lines
436 B
Python
16 lines
436 B
Python
# Generated by Django 5.2 on 2025-09-06 22:16
|
|
|
|
from django.db import migrations
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
dependencies = [
|
|
("core", "0040_customerrelationshipmanagementprovider_ordercrmlink"),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterModelOptions(
|
|
name="customerrelationshipmanagementprovider",
|
|
options={"verbose_name": "CRM", "verbose_name_plural": "CRMs"},
|
|
),
|
|
]
|