This repository has been archived on 2024-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
2023-04-09 02:25:30 -07:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2017-12-10 20:49:59 -08:00
|
|
|
namespace :glitchsoc do
|
|
|
|
desc 'Backfill local-only flag on statuses table'
|
|
|
|
task backfill_local_only: :environment do
|
2023-04-09 02:25:30 -07: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-10 20:49:59 -08:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|