mirror of
https://github.com/bcomsugi/dasaproject.git
synced 2026-01-10 07:02:38 +07:00
19 lines
449 B
Python
19 lines
449 B
Python
# Generated by Django 4.2 on 2023-05-19 15:33
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('Customer', '0005_alter_customer_coordinates_and_more'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name='customer',
|
|
name='Salutation',
|
|
field=models.CharField(choices=[('Mr', 'Mr.'), ('Mrs', 'Mrs.')], max_length=4),
|
|
),
|
|
]
|