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

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

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

  def change
    add_column :application_settings, :in_product_marketing_emails_enabled, :boolean, null: false, default: true
  end
end