gitlab-org--gitlab-foss/db/migrate/20150915001905_enable_ssl_v...

7 lines
188 B
Ruby
Raw Normal View History

# rubocop:disable all
2015-09-15 13:19:32 +00:00
class EnableSslVerificationByDefault < ActiveRecord::Migration
def change
change_column :web_hooks, :enable_ssl_verification, :boolean, default: true
end
end