Skip to content

Commit

Permalink
Fix migration
Browse files Browse the repository at this point in the history
  • Loading branch information
ericholscher committed May 18, 2020
1 parent ec2c0b6 commit 74b1e75
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
1 change: 0 additions & 1 deletion readthedocs/projects/forms.py
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,6 @@ def __init__(self, *args, **kwargs):
if show_advanced:
self.fields['advanced'] = forms.BooleanField(
required=False,
default=False,
label=_('Edit advanced project options'),
)
self.fields['repo'].widget.attrs['placeholder'] = self.placehold_repo()
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Generated by Django 2.2.10 on 2020-05-18 18:39
# Generated by Django 2.2.10 on 2020-05-18 20:17

from django.db import migrations, models

Expand All @@ -13,6 +13,6 @@ class Migration(migrations.Migration):
migrations.AddField(
model_name='project',
name='external_builds_enabled',
field=models.BooleanField(default=False, verbose_name='Build pull requests for this project'),
field=models.BooleanField(default=False, help_text='More information in <a href="https://docs.readthedocs.io/en/latest/guides/autobuild-docs-for-pull-requests.html">our docs</a>', verbose_name='Build pull requests for this project'),
),
]

0 comments on commit 74b1e75

Please sign in to comment.