forked from TagesschuleElementa/www.tagesschule-elementa.ch
migration fix
This commit is contained in:
@@ -14,5 +14,5 @@ https://control.divio.com/api/v1/apps/serve/django-filer/1.4.1/e7e860ea-0af6-4fc
|
||||
aldryn-search==1.0.1
|
||||
django-fontawesome==0.3.1
|
||||
mailchimp3==2.1.0
|
||||
django-image-cropping==1.1.0
|
||||
django-image-cropping==1.2.0
|
||||
django-anymail[mailgun]==1.4
|
||||
43
src/project/migrations/0009_auto_20190214_1250.py
Normal file
43
src/project/migrations/0009_auto_20190214_1250.py
Normal file
@@ -0,0 +1,43 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
# Generated by Django 1.11.20 on 2019-02-14 12:50
|
||||
from __future__ import unicode_literals
|
||||
|
||||
import cms.models.fields
|
||||
from django.db import migrations, models
|
||||
import django.db.models.deletion
|
||||
import djangocms_text_ckeditor.fields
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('project', '0008_auto_20180607_0810'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AddField(
|
||||
model_name='image',
|
||||
name='use_responsive_image',
|
||||
field=models.CharField(choices=[('inherit', 'Let settings.DJANGOCMS_PICTURE_RESPONSIVE_IMAGES decide'), ('yes', 'Yes'), ('no', 'No')], default='inherit', help_text='Uses responsive image technique to choose better image to display based upon screen viewport. This configuration only applies to uploaded images (external pictures will not be affected). ', max_length=7, verbose_name='Use responsive image'),
|
||||
),
|
||||
migrations.AlterField(
|
||||
model_name='image',
|
||||
name='link_page',
|
||||
field=cms.models.fields.PageField(blank=True, help_text='Wraps the image in a link to an internal (page) URL.', null=True, on_delete=django.db.models.deletion.SET_NULL, to='cms.Page', verbose_name='Internal URL'),
|
||||
),
|
||||
migrations.AlterField(
|
||||
model_name='image',
|
||||
name='use_automatic_scaling',
|
||||
field=models.BooleanField(default=True, help_text='Uses the placeholder dimensions to automatically calculate the size.', verbose_name='Automatic scaling'),
|
||||
),
|
||||
migrations.AlterField(
|
||||
model_name='timetable',
|
||||
name='introduction',
|
||||
field=djangocms_text_ckeditor.fields.HTMLField(verbose_name='Intro'),
|
||||
),
|
||||
migrations.AlterField(
|
||||
model_name='timetable',
|
||||
name='outro',
|
||||
field=djangocms_text_ckeditor.fields.HTMLField(blank=True, null=True, verbose_name='Outro'),
|
||||
),
|
||||
]
|
||||
Reference in New Issue
Block a user