Changes to make it work with django 1.11 and python3
[sommitrealweird.git] / sommitrealweird / blog / migrations / 0002_auto_20190723_1612.py
1 # -*- coding: utf-8 -*-
2 # Generated by Django 1.11.22 on 2019-07-23 16:12
3 from __future__ import unicode_literals
4
5 from django.db import migrations, models
6
7
8 class Migration(migrations.Migration):
9
10     dependencies = [
11         ('blog', '0001_initial'),
12     ]
13
14     operations = [
15         migrations.AlterField(
16             model_name='blogentry',
17             name='format',
18             field=models.CharField(choices=[('rst', 'reStructuredText'), ('html', 'HTML')], max_length=10),
19         ),
20     ]