diff --git a/db/post_migrate/20190519130537_remove_boosts_widening_audience.rb b/db/post_migrate/20190519130537_remove_boosts_widening_audience.rb index f3d90525bfb2c7..dcd3a849983e96 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 @@ def up # 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