23 lines
522 B
Python
23 lines
522 B
Python
# Generated by Django 5.1.4 on 2025-01-09 20:54
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('inventory', '0010_customer_staff'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.RemoveField(
|
|
model_name='customer',
|
|
name='country',
|
|
),
|
|
migrations.AddField(
|
|
model_name='customer',
|
|
name='city',
|
|
field=models.CharField(blank=True, max_length=255, verbose_name='City'),
|
|
),
|
|
]
|