27 lines
861 B
Python
27 lines
861 B
Python
# Generated by Django 5.2.7 on 2026-01-23 12:19
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('core', '0007_profile_country_code'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.CreateModel(
|
|
name='Country',
|
|
fields=[
|
|
('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
|
|
('name', models.CharField(max_length=100, verbose_name='Country Name')),
|
|
('code', models.CharField(max_length=10, verbose_name='Country Code')),
|
|
('is_default', models.BooleanField(default=False, verbose_name='Is Default')),
|
|
],
|
|
options={
|
|
'verbose_name': 'Country',
|
|
'verbose_name_plural': 'Countries',
|
|
},
|
|
),
|
|
]
|