33 lines
1 KiB
Python
33 lines
1 KiB
Python
|
# -*- 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',),
|
||
|
),
|
||
|
]
|