polyblog/pageapp/migrations/0001_initial.py

26 lines
670 B
Python

# -*- coding: utf-8 -*-
# Generated by Django 1.9.9 on 2016-08-16 11:06
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')),
('name', models.CharField(max_length=20)),
('header', models.CharField(max_length=50)),
('body', models.CharField(max_length=10000)),
],
),
]