20 lines
458 B
Python
20 lines
458 B
Python
# Generated by Django 5.1.7 on 2025-05-01 13:25
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('inventory', '0007_paymenthistory'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name='vendor',
|
|
name='address',
|
|
field=models.CharField(default='', max_length=200, verbose_name='Address'),
|
|
preserve_default=False,
|
|
),
|
|
]
|