269bc74506
On GitLab.com this migration could take about 3 minutes. Disabling the statement we know we have enough time to complete this. Fixes #25976
15 lines
280 B
Ruby
15 lines
280 B
Ruby
class RemoveUnneededServices < ActiveRecord::Migration
|
|
include Gitlab::Database::MigrationHelpers
|
|
|
|
DOWNTIME = false
|
|
|
|
def up
|
|
disable_statement_timeout
|
|
|
|
execute("DELETE FROM services WHERE active = false AND properties = '{}';")
|
|
end
|
|
|
|
def down
|
|
# noop
|
|
end
|
|
end
|