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

20120712080407_add_type_to_web_hook.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 18ab024c817d438a9354cc7436eac77ee89fd176 (plain)
1
2
3
4
5
class AddTypeToWebHook < ActiveRecord::Migration
  def change
    add_column :web_hooks, :type, :string, :default => "ProjectHook"
  end
end