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

20121120051432_add_service_id_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: 77adf92578ff0829e85eba7a46ef169330aa1940 (plain)
1
2
3
4
5
class AddServiceIdToWebHook < ActiveRecord::Migration
  def change
    add_column :web_hooks, :service_id, :integer, null: true
  end
end