mirror of
https://github.com/bcomsugi/dasaproject.git
synced 2026-01-10 07:02:38 +07:00
19 lines
418 B
Python
19 lines
418 B
Python
# Generated by Django 4.2 on 2023-08-31 10:31
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('Customer', '0006_alter_customer_salutation'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name='customer',
|
|
name='CustomerFullName',
|
|
field=models.CharField(max_length=160, unique=True),
|
|
),
|
|
]
|