2023-04-09 10:25:30 +01:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2017-12-11 04:49:59 +00:00
|
|
|
namespace :glitchsoc do
|
|
|
|
desc 'Backfill local-only flag on statuses table'
|
|
|
|
task backfill_local_only: :environment do
|
2023-04-09 10:25:30 +01:00
|
|
|
Status.local.where(local_only: nil).find_each do |status|
|
|
|
|
ActiveRecord::Base.logger.silence do
|
|
|
|
status.update_attribute(:local_only, status.marked_local_only?) # rubocop:disable Rails/SkipsModelValidations
|
|
|
|
end
|
2017-12-11 04:49:59 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|