28 lines
859 B
Python
28 lines
859 B
Python
# -*- coding: utf-8 -*-
|
|
# Generated by Django 1.9.4 on 2017-10-17 14:10
|
|
from __future__ import unicode_literals
|
|
|
|
import django.db.models.deletion
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('cms', '0014_auto_20160404_1908'),
|
|
('ungleich_page', '0001_initial'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.CreateModel(
|
|
name='UngelichContactUsSection',
|
|
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')),
|
|
('email', models.EmailField(max_length=200)),
|
|
],
|
|
options={
|
|
'abstract': False,
|
|
},
|
|
bases=('cms.cmsplugin',),
|
|
),
|
|
]
|