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

20151201203948_raise_hook_url_limit.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: c490b7ace0f58a5afb1dbb16f6db021a0a3d3b77 (plain)
1
2
3
4
5
6
# rubocop:disable all
class RaiseHookUrlLimit < ActiveRecord::Migration
  def change
    change_column :web_hooks, :url, :string, limit: 2000
  end
end