# -*- coding: utf-8 -*- from __future__ import unicode_literals from django.db import models, migrations class Migration(migrations.Migration): dependencies = [ ] operations = [ migrations.CreateModel( name='Page', fields=[ ('id', models.AutoField(auto_created=True, serialize=False, verbose_name='ID', primary_key=True)), ('name', models.CharField(unique=True, max_length=20)), ('header_image', models.CharField(max_length=255, default='&black')), ('title', models.CharField(max_length=255)), ('subtitle', models.CharField(max_length=255)), ('body', models.TextField(null=True, blank=True)), ('edited', models.DateTimeField()), ], ), ]