debian-mirror-gitlab/db/migrate/20190426180107_add_deployment_events_to_services.rb

18 lines
431 B
Ruby
Raw Normal View History

2019-07-31 22:56:46 +05:30
# frozen_string_literal: true
class AddDeploymentEventsToServices < ActiveRecord::Migration[5.0]
include Gitlab::Database::MigrationHelpers
DOWNTIME = false
disable_ddl_transaction!
def up
2020-03-13 15:44:24 +05:30
add_column_with_default(:services, :deployment_events, :boolean, default: false, allow_null: false) # rubocop:disable Migration/AddColumnWithDefault
2019-07-31 22:56:46 +05:30
end
def down
remove_column(:services, :deployment_events)
end
end