DEV: Switch `posts:inline_uploads` scope to be more generic.
This commit is contained in:
parent
c9db897777
commit
eaa7527933
|
@ -675,9 +675,10 @@ def correct_inline_uploads
|
|||
dry_run = (ENV["DRY_RUN"].nil? ? true : ENV["DRY_RUN"] != "false")
|
||||
verbose = ENV["VERBOSE"]
|
||||
|
||||
scope = Post.joins(:post_uploads)
|
||||
.distinct("posts.id")
|
||||
.where("raw LIKE '%class=\"attachment%' OR raw LIKE '%<img src=\"%'")
|
||||
scope = Post.joins(:post_uploads).distinct("posts.id")
|
||||
.where(<<~SQL)
|
||||
raw LIKE '%/uploads/#{RailsMultisite::ConnectionManagement.current_db}/original/%'
|
||||
SQL
|
||||
|
||||
affected_posts_count = scope.count
|
||||
fixed_count = 0
|
||||
|
|
Loading…
Reference in New Issue