gitlab-org--gitlab-foss/db/migrate/20151228175719_add_recaptch...

10 lines
267 B
Ruby

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