2019-02-15 15:39:39 +05:30
|
|
|
class RemoveUnneededServices < ActiveRecord::Migration[4.2]
|
2017-08-17 22:00:37 +05:30
|
|
|
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
|