1
0
Fork 0
mirror of https://github.com/seanmorley15/AdventureLog.git synced 2025-07-25 07:49:37 +02:00
AdventureLog/backend/server/worldtravel/migrations/0010_country_capital.py
2024-09-11 16:08:10 -04:00

18 lines
422 B
Python

# Generated by Django 5.0.8 on 2024-09-11 19:59
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('worldtravel', '0009_alter_country_country_code'),
]
operations = [
migrations.AddField(
model_name='country',
name='capital',
field=models.CharField(blank=True, max_length=100, null=True),
),
]