gitlab-org--gitlab-foss/db/migrate/20151201203948_raise_hook_u...

7 lines
152 B
Ruby
Raw Normal View History

# rubocop:disable all
2015-12-01 20:47:23 +00:00
class RaiseHookUrlLimit < ActiveRecord::Migration
def change
change_column :web_hooks, :url, :string, limit: 2000
end
end