summaryrefslogtreecommitdiff
path: root/db/migrate/20151228175719_add_recaptcha_to_application_settings.rb
blob: e0dd19b2b0600ff0bc9a95f4656d558f00fe8fdf (plain)
1
2
3
4
5
6
7
8
9
10
# rubocop:disable all
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