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

7 lines
188 B
Ruby

# rubocop:disable all
class EnableSslVerificationByDefault < ActiveRecord::Migration
def change
change_column :web_hooks, :enable_ssl_verification, :boolean, default: true
end
end