diff options
Diffstat (limited to 'bak/unused_apps/jrnl/migrations/0026_entry_country_name.py')
-rw-r--r-- | bak/unused_apps/jrnl/migrations/0026_entry_country_name.py | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/bak/unused_apps/jrnl/migrations/0026_entry_country_name.py b/bak/unused_apps/jrnl/migrations/0026_entry_country_name.py new file mode 100644 index 0000000..22d07f9 --- /dev/null +++ b/bak/unused_apps/jrnl/migrations/0026_entry_country_name.py @@ -0,0 +1,18 @@ +# Generated by Django 2.1.1 on 2019-01-31 23:35 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('jrnl', '0025_auto_20190131_2335'), + ] + + operations = [ + migrations.AddField( + model_name='entry', + name='country_name', + field=models.CharField(blank=True, max_length=200, null=True), + ), + ] |