2016-06-16 23:09:34 +05:30
|
|
|
# rubocop:disable all
|
2016-01-14 18:37:52 +05:30
|
|
|
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
|