mirror of
https://github.com/HamzaSha1/zod-backend.git
synced 2025-07-15 18:07:02 +00:00
19 lines
528 B
Python
19 lines
528 B
Python
# Generated by Django 4.2.2 on 2023-07-04 13:41
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('guardian', '0009_alter_juniortask_image'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name='juniortask',
|
|
name='task_status',
|
|
field=models.CharField(choices=[('1', 'pending'), ('2', 'in-progress'), ('3', 'rejected'), ('4', 'requested'), ('5', 'completed')], default='pending', max_length=15),
|
|
),
|
|
]
|