# -*- coding: utf-8 -*-
from __future__ import unicode_literals

from django.db import migrations, models


class Migration(migrations.Migration):

    dependencies = [
        ('content', '0001_initial'),
    ]

    operations = [
        migrations.CreateModel(
            name='Homepage',
            fields=[
                ('id', models.AutoField(verbose_name='ID', serialize=False, auto_created=True, primary_key=True)),
                ('meta_title', models.CharField(max_length=255, blank=True)),
                ('meta_description', models.TextField(blank=True)),
                ('banner', models.ImageField(upload_to=b'banner')),
                ('banner_content', models.TextField()),
                ('about_us_title', models.CharField(max_length=200)),
                ('about_us_content', models.TextField()),
                ('doctors_title', models.CharField(max_length=200)),
                ('doctors_brief', models.TextField()),
                ('feedback_title', models.CharField(max_length=200)),
                ('feedback_content', models.TextField()),
                ('call_to_action_1', models.ForeignKey(related_name='call_to_action_1', blank=True, to='content.CallToAction', null=True)),
                ('call_to_action_2', models.ForeignKey(related_name='call_to_action_2', blank=True, to='content.CallToAction', null=True)),
                ('call_to_action_3', models.ForeignKey(related_name='call_to_action_3', blank=True, to='content.CallToAction', null=True)),
                ('call_to_action_4', models.ForeignKey(related_name='call_to_action_4', blank=True, to='content.CallToAction', null=True)),
                ('doctor_1', models.ForeignKey(related_name='doctor_1', blank=True, to='content.Doctor', null=True)),
                ('doctor_2', models.ForeignKey(related_name='doctor_2', blank=True, to='content.Doctor', null=True)),
                ('doctor_3', models.ForeignKey(related_name='doctor_3', blank=True, to='content.Doctor', null=True)),
                ('folded_block_1', models.ForeignKey(related_name='folded_block_1', blank=True, to='content.FoldedBlock', null=True)),
                ('folded_block_2', models.ForeignKey(related_name='folded_block_2', blank=True, to='content.FoldedBlock', null=True)),
                ('folded_block_3', models.ForeignKey(related_name='folded_block_3', blank=True, to='content.FoldedBlock', null=True)),
                ('folded_block_4', models.ForeignKey(related_name='folded_block_4', blank=True, to='content.FoldedBlock', null=True)),
            ],
            options={
                'abstract': False,
            },
        ),
    ]
