You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

8 lines
296 B

  1. namespace :glitchsoc do
  2. desc 'Backfill local-only flag on statuses table'
  3. task backfill_local_only: :environment do
  4. Status.local.where(local_only: nil).find_each do |st|
  5. ActiveRecord::Base.logger.silence { st.update_attribute(:local_only, st.marked_local_only?) }
  6. end
  7. end
  8. end