mirror of
https://0xacab.org/sutty/sutty
synced 2024-11-22 16:06:23 +00:00
11 lines
223 B
Ruby
11 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
|