mirror of
https://github.com/seanmorley15/AdventureLog.git
synced 2025-07-29 17:59:36 +02:00
20 lines
427 B
Python
20 lines
427 B
Python
|
# Generated by Django 5.0.8 on 2024-08-20 21:33
|
||
|
|
||
|
from django.db import migrations, models
|
||
|
|
||
|
|
||
|
class Migration(migrations.Migration):
|
||
|
|
||
|
dependencies = [
|
||
|
('worldtravel', '0001_initial'),
|
||
|
]
|
||
|
|
||
|
operations = [
|
||
|
migrations.AddField(
|
||
|
model_name='region',
|
||
|
name='name_en',
|
||
|
field=models.CharField(default='', max_length=100),
|
||
|
preserve_default=False,
|
||
|
),
|
||
|
]
|