20 lines
487 B
Python
20 lines
487 B
Python
# Generated by Django 5.1.4 on 2025-01-11 12:28
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('inventory', '0014_alter_activity_created_by_alter_notes_created_by'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='lead',
|
|
name='city',
|
|
field=models.CharField(default='Riyadh', max_length=50, verbose_name='City'),
|
|
preserve_default=False,
|
|
),
|
|
]
|