haikal/inventory/migrations/0011_remove_customer_country_customer_city.py
Marwan Alwali 144d0434ad update
2025-01-09 23:55:29 +03:00

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'),
),
]