blob: 5dfbbadfef834e0265bdb080c4826252a1122dc2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
# -*- coding: utf-8 -*-
# Generated by Django 1.9 on 2016-09-06 09:01
from __future__ import unicode_literals
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('jrnl', '0008_auto_20160906_0845'),
]
operations = [
migrations.AddField(
model_name='homepagecurrator',
name='image_offset_vertical',
field=models.CharField(default='160px', help_text='add negative top margin to shift image (include css unit)', max_length=20),
preserve_default=False,
),
]
|