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: 98a7fca6f6f3eb256ffd78c312a72dd244361d8e (plain)
1
2
3
4
5
class RaiseHookUrlLimit < ActiveRecord::Migration
  def change
    change_column :web_hooks, :url, :string, limit: 2000
  end
end