Welcome to mirror list, hosted at ThFree Co, Russian Federation.

20201229105948_add_invisible_captcha_enabled_to_settings.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 025fcba07290d3244ce9fa11fa5a932b71ec7bf7 (plain)
1
2
3
4
5
6
7
8
9
# frozen_string_literal: true

class AddInvisibleCaptchaEnabledToSettings < ActiveRecord::Migration[6.0]
  DOWNTIME = false

  def change
    add_column :application_settings, :invisible_captcha_enabled, :boolean, null: false, default: false
  end
end