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

7 lines
152 B
Ruby

# rubocop:disable all
class RaiseHookUrlLimit < ActiveRecord::Migration
def change
change_column :web_hooks, :url, :string, limit: 2000
end
end