Initial commit (Clean history)
This commit is contained in:
30
app/migrations/0285_country_code_country_en_country_name.py
Normal file
30
app/migrations/0285_country_code_country_en_country_name.py
Normal file
@@ -0,0 +1,30 @@
|
||||
# Generated by Django 5.1.7 on 2025-11-24 03:47
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('app', '0284_remove_country_code_remove_country_en_and_more'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AddField(
|
||||
model_name='country',
|
||||
name='code',
|
||||
field=models.CharField(default='xxx', max_length=30),
|
||||
preserve_default=False,
|
||||
),
|
||||
migrations.AddField(
|
||||
model_name='country',
|
||||
name='en',
|
||||
field=models.CharField(max_length=100, null=True),
|
||||
),
|
||||
migrations.AddField(
|
||||
model_name='country',
|
||||
name='name',
|
||||
field=models.CharField(default='xxx', max_length=100),
|
||||
preserve_default=False,
|
||||
),
|
||||
]
|
||||
Reference in New Issue
Block a user