6 lines
188 B
Ruby
6 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
|