debian-mirror-gitlab/db/migrate/20150915001905_enable_ssl_verification_by_default.rb
2019-02-15 15:39:39 +05:30

6 lines
171 B
Ruby

class EnableSslVerificationByDefault < ActiveRecord::Migration[4.2]
def change
change_column :web_hooks, :enable_ssl_verification, :boolean, default: true
end
end