debian-mirror-gitlab/db/migrate/20150915001905_enable_ssl_verification_by_default.rb

7 lines
188 B
Ruby
Raw Normal View History

# rubocop:disable all
2015-09-25 12:07:36 +05:30
class EnableSslVerificationByDefault < ActiveRecord::Migration
def change
change_column :web_hooks, :enable_ssl_verification, :boolean, default: true
end
end