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: readthedocs/projects/migrations/0096_auto_20230207_1642.py
+19-7
Original file line number
Diff line number
Diff line change
@@ -6,18 +6,30 @@
6
6
classMigration(migrations.Migration):
7
7
8
8
dependencies= [
9
-
('projects', '0095_default_branch_helptext'),
9
+
("projects", "0095_default_branch_helptext"),
10
10
]
11
11
12
12
operations= [
13
13
migrations.AddField(
14
-
model_name='historicalproject',
15
-
name='rtd_conf_file',
16
-
field=models.CharField(blank=True, default='', help_text='Path from project root to <code>.readthedocs.yml</code> file (ex. <code>docs/.readthedocs.yml</code>). Leave blank if you want us to find it for you.', max_length=255, verbose_name='.readthedocs.yml configuration file'),
14
+
model_name="historicalproject",
15
+
name="rtd_conf_file",
16
+
field=models.CharField(
17
+
blank=True,
18
+
default="",
19
+
help_text="Path from project root to <code>.readthedocs.yml</code> file (ex. <code>docs/.readthedocs.yml</code>). Leave blank if you want us to find it for you.",
field=models.CharField(blank=True, default='', help_text='Path from project root to <code>.readthedocs.yml</code> file (ex. <code>docs/.readthedocs.yml</code>). Leave blank if you want us to find it for you.', max_length=255, verbose_name='.readthedocs.yml configuration file'),
25
+
model_name="project",
26
+
name="rtd_conf_file",
27
+
field=models.CharField(
28
+
blank=True,
29
+
default="",
30
+
help_text="Path from project root to <code>.readthedocs.yml</code> file (ex. <code>docs/.readthedocs.yml</code>). Leave blank if you want us to find it for you.",
0 commit comments