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

20140305193308_add_tag_push_hooks_to_project_hook.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 55c0fa56418bc6e1dbad6d00d4e7f93e4206e817 (plain)
1
2
3
4
5
6
# rubocop:disable all
class AddTagPushHooksToProjectHook < ActiveRecord::Migration[4.2]
  def change
    add_column :web_hooks, :tag_push_events, :boolean, default: false
  end
end