fix migrations issue
This commit is contained in:
parent
d0c37a9722
commit
0e192d9c8b
@ -6,7 +6,6 @@ from django.db import migrations
|
|||||||
class Migration(migrations.Migration):
|
class Migration(migrations.Migration):
|
||||||
|
|
||||||
dependencies = [
|
dependencies = [
|
||||||
('inventory', '0004_invoicemodelbase'),
|
|
||||||
('inventory', '0004_rename_assigned_lead_staff_remove_customer_city_and_more'),
|
('inventory', '0004_rename_assigned_lead_staff_remove_customer_city_and_more'),
|
||||||
]
|
]
|
||||||
|
|
||||||
|
|||||||
@ -26,7 +26,7 @@ class Migration(migrations.Migration):
|
|||||||
'verbose_name_plural': 'Car Transfer Logs',
|
'verbose_name_plural': 'Car Transfer Logs',
|
||||||
},
|
},
|
||||||
),
|
),
|
||||||
migrations.DeleteModel(
|
# migrations.DeleteModel(
|
||||||
name='InvoiceModelBase',
|
# name='InvoiceModelBase',
|
||||||
),
|
# ),
|
||||||
]
|
]
|
||||||
|
|||||||
18
inventory/migrations/0014_alter_cartransfer_status.py
Normal file
18
inventory/migrations/0014_alter_cartransfer_status.py
Normal file
@ -0,0 +1,18 @@
|
|||||||
|
# Generated by Django 4.2.17 on 2025-01-21 08:56
|
||||||
|
|
||||||
|
from django.db import migrations, models
|
||||||
|
|
||||||
|
|
||||||
|
class Migration(migrations.Migration):
|
||||||
|
|
||||||
|
dependencies = [
|
||||||
|
('inventory', '0013_alter_cartransfer_status'),
|
||||||
|
]
|
||||||
|
|
||||||
|
operations = [
|
||||||
|
migrations.AlterField(
|
||||||
|
model_name='cartransfer',
|
||||||
|
name='status',
|
||||||
|
field=models.CharField(default='draft', max_length=10, verbose_name=[('draft', 'Draft'), ('approved', 'Approved'), ('pending', 'Pending'), ('accepted', 'Accepted'), ('success', 'Success'), ('reject', 'Reject')]),
|
||||||
|
),
|
||||||
|
]
|
||||||
Loading…
x
Reference in New Issue
Block a user