15 lines
285 B
Ruby
15 lines
285 B
Ruby
class RemoveUnneededServices < ActiveRecord::Migration[4.2]
|
|
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
|