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

20220906093857_add_column_branch_filter_strategy_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: 739bedda9e0fdfb08788e49d5a24ea14c2a2711f (plain)
1
2
3
4
5
6
7
# frozen_string_literal: true

class AddColumnBranchFilterStrategyToWebHooks < Gitlab::Database::Migration[2.0]
  def change
    add_column :web_hooks, :branch_filter_strategy, :integer, null: false, default: 0, limit: 2
  end
end