summaryrefslogtreecommitdiff
path: root/db/migrate/20190426180107_add_deployment_events_to_services.rb
blob: 1fb137fb5f9735b9b9ce5283762bc8f766aab1a5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# 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