You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
562 B
Python
19 lines
562 B
Python
# Generated by Django 5.0.4 on 2024-05-10 06:40
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('billing', '0051_alter_orderpayment_amount'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name='orderstatus',
|
|
name='status',
|
|
field=models.CharField(choices=[('Completed', 'Completed'), ('Pending', 'Pending'), ('Failed', 'Failed'), ('Cancelled', 'Cancelled'), ('In Progress', 'In Progress')], default='Pending', max_length=200),
|
|
),
|
|
]
|