diff --git a/apps/rss_feeds/migrations/0014_count_story_histories.py b/apps/rss_feeds/migrations/0014_count_story_histories.py index dfe4f9aae..230815a4b 100644 --- a/apps/rss_feeds/migrations/0014_count_story_histories.py +++ b/apps/rss_feeds/migrations/0014_count_story_histories.py @@ -10,7 +10,7 @@ class Migration(DataMigration): "Write your forwards methods here." from apps.rss_feeds.models import Feed for feed in Feed.objects.all(): - feed.stories_last_year = None + feed.story_count_history = None feed.save() try: feed.count_stories(verbose=True)