5
0
Fork 0
mirror of https://0xacab.org/sutty/sutty synced 2024-11-22 16:16:21 +00:00
panel/db/migrate/20231026211607_deprecate_deploy_reindex.rb
f fca074bb0e
Some checks failed
ci/woodpecker/push/woodpecker Pipeline failed
fix: deprecar DeployReindex
ya no es necesario porque estamos reindexando a demanda

(cherry picked from commit a171aa24e3)
2023-10-26 18:42:49 -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