Welcome to mirror list, hosted at ThFree Co, Russian Federation.

20200728163009_add_deployment_events_to_web_hooks.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: b1bf9560bcc8e0c162529daaf94bd70fa221c834 (plain)
1
2
3
4
5
6
7
8
9
# frozen_string_literal: true

class AddDeploymentEventsToWebHooks < ActiveRecord::Migration[6.0]
  DOWNTIME = false

  def change
    add_column :web_hooks, :deployment_events, :boolean, null: false, default: false
  end
end