From b37fe77240f51c22a27fc55b3ebb1f5d6642247b Mon Sep 17 00:00:00 2001 From: KMY Date: Fri, 6 Dec 2024 12:45:21 +0900 Subject: [PATCH] Fix test --- .../20190519130537_remove_boosts_widening_audience.rb | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/db/post_migrate/20190519130537_remove_boosts_widening_audience.rb b/db/post_migrate/20190519130537_remove_boosts_widening_audience.rb index f3d90525bf..dcd3a84998 100644 --- a/db/post_migrate/20190519130537_remove_boosts_widening_audience.rb +++ b/db/post_migrate/20190519130537_remove_boosts_widening_audience.rb @@ -4,8 +4,8 @@ class RemoveBoostsWideningAudience < ActiveRecord::Migration[5.2] disable_ddl_transaction! def up - add_column :statuses, :searchability, :integer - add_column :statuses, :limited_scope, :integer + # add_column :statuses, :searchability, :integer + # add_column :statuses, :limited_scope, :integer Status.find_by_sql(<<-SQL.squish) SELECT boost.id @@ -22,8 +22,8 @@ class RemoveBoostsWideningAudience < ActiveRecord::Migration[5.2] # Sorry, but remove to fix test # RemovalWorker.push_bulk(public_boosts.pluck(:id)) - remove_column :statuses, :searchability - remove_column :statuses, :limited_scope + # remove_column :statuses, :searchability + # remove_column :statuses, :limited_scope end def down