Add initial ungleich_page migration

This commit is contained in:
M.Ravi 2017-10-17 15:58:27 +02:00
parent 8e76a1c671
commit 4d485ef178
1 changed files with 32 additions and 0 deletions

View File

@ -0,0 +1,32 @@
# -*- coding: utf-8 -*-
# Generated by Django 1.9.4 on 2017-10-17 13:41
from __future__ import unicode_literals
import django.db.models.deletion
import filer.fields.image
from django.db import migrations, models
class Migration(migrations.Migration):
initial = True
dependencies = [
('cms', '0014_auto_20160404_1908'),
('filer', '0005_auto_20171017_1252'),
]
operations = [
migrations.CreateModel(
name='UngelichPicture',
fields=[
('cmsplugin_ptr', models.OneToOneField(auto_created=True, on_delete=django.db.models.deletion.CASCADE, parent_link=True, primary_key=True, serialize=False, to='cms.CMSPlugin')),
('title', models.CharField(max_length=200)),
('image', filer.fields.image.FilerImageField(blank=True, null=True, on_delete=django.db.models.deletion.SET_NULL, related_name='image', to='filer.Image')),
],
options={
'abstract': False,
},
bases=('cms.cmsplugin',),
),
]