16 lines
267 B
Ruby
16 lines
267 B
Ruby
|
class RemoveGemnasiumService < ActiveRecord::Migration
|
||
|
include Gitlab::Database::MigrationHelpers
|
||
|
|
||
|
DOWNTIME = false
|
||
|
|
||
|
def up
|
||
|
disable_statement_timeout
|
||
|
|
||
|
execute("DELETE FROM services WHERE type='GemnasiumService';")
|
||
|
end
|
||
|
|
||
|
def down
|
||
|
# noop
|
||
|
end
|
||
|
end
|