forked from erp-dev/erp
18 lines
442 B
Python
18 lines
442 B
Python
# Generated by Django 5.2.8 on 2026-03-05 06:25
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('basic_info', '0024_frontend_page_and_visible_pages'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddConstraint(
|
|
model_name='customer',
|
|
constraint=models.UniqueConstraint(fields=('merchant', 'name'), name='uniq_customer_merchant_name'),
|
|
),
|
|
]
|