jira-13 update country name

This commit is contained in:
jain
2023-06-27 19:32:57 +05:30
parent 0006208cf8
commit d208e5252c
6 changed files with 40 additions and 0 deletions

View File

@ -0,0 +1,18 @@
# Generated by Django 4.2.2 on 2023-06-27 13:59
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('junior', '0001_initial'),
]
operations = [
migrations.AddField(
model_name='junior',
name='country_name',
field=models.CharField(blank=True, default=None, max_length=30, null=True),
),
]