2016-06-09 08:39:16 -04:00
|
|
|
# rubocop:disable all
|
2015-12-28 15:21:34 -05:00
|
|
|
class AddRecaptchaToApplicationSettings < ActiveRecord::Migration
|
|
|
|
def change
|
|
|
|
change_table :application_settings do |t|
|
|
|
|
t.boolean :recaptcha_enabled, default: false
|
|
|
|
t.string :recaptcha_site_key
|
|
|
|
t.string :recaptcha_private_key
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|