summaryrefslogtreecommitdiff
path: root/app/pages/migrations/0001_initial.py
blob: 4e138f7ba35f45d108144f5a8ea398a8c7897341 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
# -*- coding: utf-8 -*-
# Generated by Django 1.9 on 2015-12-03 17:02
from __future__ import unicode_literals

from django.db import migrations, models


class Migration(migrations.Migration):

    initial = True

    dependencies = [
    ]

    operations = [
        migrations.CreateModel(
            name='Page',
            fields=[
                ('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
                ('title', models.CharField(max_length=200)),
                ('slug', models.SlugField()),
                ('body_html', models.TextField(blank=True)),
                ('body_markdown', models.TextField()),
                ('meta_description', models.CharField(blank=True, max_length=256, null=True)),
            ],
        ),
    ]