1
0
Fork 0
mirror of https://github.com/seanmorley15/AdventureLog.git synced 2025-08-04 20:55:19 +02:00

Add capital to countries

This commit is contained in:
Sean Morley 2024-09-11 16:08:10 -04:00
parent 4dc11db21d
commit 6ac3f0541f
6 changed files with 39 additions and 5 deletions

View file

@ -0,0 +1,18 @@
# 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),
),
]