Show More
@@ -0,0 +1,23 b'' | |||
|
1 | # -*- coding: utf-8 -*- | |
|
2 | from __future__ import unicode_literals | |
|
3 | ||
|
4 | from django.db import models, migrations | |
|
5 | ||
|
6 | ||
|
7 | class Migration(migrations.Migration): | |
|
8 | ||
|
9 | dependencies = [ | |
|
10 | ('boards', '0001_initial'), | |
|
11 | ] | |
|
12 | ||
|
13 | operations = [ | |
|
14 | migrations.RemoveField( | |
|
15 | model_name='post', | |
|
16 | name='text_markup_type', | |
|
17 | ), | |
|
18 | migrations.AlterField( | |
|
19 | model_name='post', | |
|
20 | name='_text_rendered', | |
|
21 | field=models.TextField(null=True, blank=True, editable=False), | |
|
22 | ), | |
|
23 | ] |
General Comments 0
You need to be logged in to leave comments.
Login now