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

20210127052226_add_subgroup_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: fe2b2ef412d650d6603c9360c2dd82929ee2404e (plain)
1
2
3
4
5
6
7
8
9
# frozen_string_literal: true

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

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