Fix review and statistic score on restaurant page
Restaurant.active.not_expired.find_each do |restaurant|
RestaurantSelectedReview.where(review_stat: Restaurants::ReviewStat.where(restaurant: restaurant)).destroy_all
Restaurants::ReviewStat.where(restaurant: restaurant).destroy_all
Restaurants::ReviewStatGenerator.new.perform restaurant.id, {}, 'migrate'
Restaurants::SelectedReviewGenerator.new.perform restaurant.id, {}, 'migrate'
restaurant.refresh_view_cache_key
end
This script is to fix the review and statistic score on restaurant page
