18 lines
382 B
Ruby
18 lines
382 B
Ruby
|
# frozen_string_literal: true
|
||
|
|
||
|
class AddDeploymentEventsToServices < ActiveRecord::Migration[5.0]
|
||
|
include Gitlab::Database::MigrationHelpers
|
||
|
|
||
|
DOWNTIME = false
|
||
|
|
||
|
disable_ddl_transaction!
|
||
|
|
||
|
def up
|
||
|
add_column_with_default(:services, :deployment_events, :boolean, default: false, allow_null: false)
|
||
|
end
|
||
|
|
||
|
def down
|
||
|
remove_column(:services, :deployment_events)
|
||
|
end
|
||
|
end
|