-
-
Notifications
You must be signed in to change notification settings - Fork 673
Expand file tree
/
Copy path0003_auto_20170821_2000.py
More file actions
40 lines (37 loc) · 1.15 KB
/
0003_auto_20170821_2000.py
File metadata and controls
40 lines (37 loc) · 1.15 KB
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
28
29
30
31
32
33
34
35
36
37
38
39
40
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
("codesamples", "0002_auto_20150416_1853"),
]
operations = [
migrations.AlterField(
model_name="codesample",
name="code_markup_type",
field=models.CharField(
choices=[
("", "--"),
("html", "HTML"),
("plain", "Plain"),
("markdown", "Markdown"),
("restructuredtext", "Restructured Text"),
],
default="html",
max_length=30,
),
),
migrations.AlterField(
model_name="codesample",
name="copy_markup_type",
field=models.CharField(
choices=[
("", "--"),
("html", "HTML"),
("plain", "Plain"),
("markdown", "Markdown"),
("restructuredtext", "Restructured Text"),
],
default="html",
max_length=30,
),
),
]