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