diaspora/db/migrate/20190703231700_fix_pending_profile_photos.rb

9 lines
262 B
Ruby

# frozen_string_literal: true
class FixPendingProfilePhotos < ActiveRecord::Migration[5.1]
def up
Photo.where(pending: true).each do |photo|
photo.update(pending: false) if Profile.where(image_url: photo.url(:thumb_large)).exists?
end
end
end