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

20200908212414_add_feature_flag_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: 40e2b37b390c811bfa5d6ef59b28a60968d88660 (plain)
1
2
3
4
5
6
7
8
9
# frozen_string_literal: true

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

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