You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: custom_field/migrations/0002_auto_20150119_2032.py
+36-16Lines changed: 36 additions & 16 deletions
Original file line number
Diff line number
Diff line change
@@ -7,43 +7,63 @@
7
7
classMigration(migrations.Migration):
8
8
9
9
dependencies= [
10
-
('custom_field', '0001_initial'),
10
+
("custom_field", "0001_initial"),
11
11
]
12
12
13
13
operations= [
14
14
migrations.AddField(
15
-
model_name='customfield',
16
-
name='field_choices',
17
-
field=models.CharField(help_text=b'List the choices you want displayed, seperated by commas. This is only valid for Dropdown, Multiple, and Checkbox field types', max_length=2000, blank=True),
15
+
model_name="customfield",
16
+
name="field_choices",
17
+
field=models.CharField(
18
+
help_text=b"List the choices you want displayed, seperated by commas. This is only valid for Dropdown, Multiple, and Checkbox field types",
19
+
max_length=2000,
20
+
blank=True,
21
+
),
18
22
preserve_default=True,
19
23
),
20
24
migrations.AddField(
21
-
model_name='customfield',
22
-
name='is_required',
25
+
model_name="customfield",
26
+
name="is_required",
23
27
field=models.BooleanField(default=False),
24
28
preserve_default=True,
25
29
),
26
30
migrations.AlterField(
27
-
model_name='customfield',
28
-
name='default_value',
29
-
field=models.CharField(help_text=b'You may leave blank. For Boolean use True or False', max_length=5000, blank=True),
31
+
model_name="customfield",
32
+
name="default_value",
33
+
field=models.CharField(
34
+
help_text=b"You may leave blank. For Boolean use True or False",
0 commit comments