6 lines
166 B
Ruby
6 lines
166 B
Ruby
|
class EnableSslVerificationByDefault < ActiveRecord::Migration
|
||
|
def change
|
||
|
change_column :web_hooks, :enable_ssl_verification, :boolean, default: true
|
||
|
end
|
||
|
end
|