debian-mirror-gitlab/db/migrate/20151228175719_add_recaptcha_to_application_settings.rb

10 lines
272 B
Ruby
Raw Normal View History

2018-12-23 12:14:25 +05:30
class AddRecaptchaToApplicationSettings < ActiveRecord::Migration[4.2]
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