5
0
Fork 0
mirror of https://0xacab.org/sutty/sutty synced 2024-11-22 11:26:21 +00:00
panel/db/migrate/20231026211607_deprecate_deploy_reindex.rb
f a171aa24e3
fix: deprecar DeployReindex
ya no es necesario porque estamos reindexando a demanda
2023-10-26 18:17:42 -03:00

10 lines
223 B
Ruby

# frozen_string_literal: true
# Ya no es necesario reindexar por la fuerza
class DeprecateDeployReindex < ActiveRecord::Migration[6.1]
def up
Deploy.where(type: 'DeployReindex').destroy_all
end
def down;end
end