Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/diaspora/diaspora.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'db/migrate/20190703231700_fix_pending_profile_photos.rb')
-rw-r--r--db/migrate/20190703231700_fix_pending_profile_photos.rb9
1 files changed, 9 insertions, 0 deletions
diff --git a/db/migrate/20190703231700_fix_pending_profile_photos.rb b/db/migrate/20190703231700_fix_pending_profile_photos.rb
new file mode 100644
index 000000000..51b3a1512
--- /dev/null
+++ b/db/migrate/20190703231700_fix_pending_profile_photos.rb
@@ -0,0 +1,9 @@
+# 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