summaryrefslogtreecommitdiff
path: root/bak/unused_apps/jrnl/migrations/0027_entry_country_slug.py
diff options
context:
space:
mode:
Diffstat (limited to 'bak/unused_apps/jrnl/migrations/0027_entry_country_slug.py')
-rw-r--r--bak/unused_apps/jrnl/migrations/0027_entry_country_slug.py18
1 files changed, 18 insertions, 0 deletions
diff --git a/bak/unused_apps/jrnl/migrations/0027_entry_country_slug.py b/bak/unused_apps/jrnl/migrations/0027_entry_country_slug.py
new file mode 100644
index 0000000..4560497
--- /dev/null
+++ b/bak/unused_apps/jrnl/migrations/0027_entry_country_slug.py
@@ -0,0 +1,18 @@
+# Generated by Django 2.1.5 on 2019-02-15 21:37
+
+from django.db import migrations, models
+
+
+class Migration(migrations.Migration):
+
+ dependencies = [
+ ('jrnl', '0026_entry_country_name'),
+ ]
+
+ operations = [
+ migrations.AddField(
+ model_name='entry',
+ name='country_slug',
+ field=models.CharField(blank=True, max_length=200, null=True),
+ ),
+ ]