mirror of
https://github.com/HamzaSha1/zod-backend.git
synced 2025-08-25 13:49:40 +00:00
19 lines
537 B
Python
19 lines
537 B
Python
# Generated by Django 4.2.2 on 2023-08-08 05:43
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('junior', '0019_juniorarticlepoints'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='junior',
|
|
name='guardian_code_status',
|
|
field=models.CharField(blank=True, choices=[('1', 'no guardian code'), ('2', 'exist guardian code'), ('3', 'request for guardian code')], default='1', max_length=31, null=True),
|
|
),
|
|
]
|