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