summaryrefslogtreecommitdiff
path: root/app/jrnl/migrations/0001_initial.py
diff options
context:
space:
mode:
Diffstat (limited to 'app/jrnl/migrations/0001_initial.py')
-rw-r--r--app/jrnl/migrations/0001_initial.py1
1 files changed, 0 insertions, 1 deletions
diff --git a/app/jrnl/migrations/0001_initial.py b/app/jrnl/migrations/0001_initial.py
index 7938b94..a3660ab 100644
--- a/app/jrnl/migrations/0001_initial.py
+++ b/app/jrnl/migrations/0001_initial.py
@@ -32,7 +32,6 @@ class Migration(migrations.Migration):
('point', django.contrib.gis.db.models.fields.PointField(blank=True, null=True, srid=4326)),
('status', models.IntegerField(choices=[(0, 'Draft'), (1, 'Published')], default=0)),
('image', models.FileField(blank=True, help_text='should be 205px high', null=True, upload_to=jrnl.models.get_upload_path)),
- ('thumbnail', models.FileField(blank=True, help_text='should be 160 wide', null=True, upload_to=jrnl.models.get_tn_path)),
('meta_description', models.CharField(blank=True, max_length=256, null=True)),
('template_name', models.IntegerField(choices=[(0, 'single'), (1, 'double'), (2, 'single-dark'), (3, 'double-dark'), (4, 'bigimg'), (5, 'bigimg-dark')], default=0)),
('location', models.ForeignKey(blank=True, null=True, on_delete=django.db.models.deletion.CASCADE, to='locations.Location')),