Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

remove news.featured property #3380

Merged
merged 8 commits into from Sep 17, 2019
@@ -0,0 +1,17 @@
# Generated by Django 2.2.3 on 2019-07-09 22:18

from django.db import migrations


class Migration(migrations.Migration):

dependencies = [
('news', '0003_news_featured'),
]

operations = [
migrations.RemoveField(
model_name='news',
name='featured',
),
]
4 changes: 0 additions & 4 deletions network-api/networkapi/news/models.py
Expand Up @@ -60,10 +60,6 @@ class News(models.Model):
blank=True,
null=True,
)
featured = models.BooleanField(
help_text='Do you want to feature this news piece on the homepage?',
default=False,
)
publish_after = models.DateTimeField(
help_text='Make this news visible only '
'after this date and time (UTC)',
Expand Down