Fixes: 1) Correct `verbose_name` and `verbose_name_plural` in `CustomerRelationshipManagementProvider` model. Extra: 1) None.
17 lines
437 B
Python
17 lines
437 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"},
|
|
),
|
|
]
|