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

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

class AddGroupEmailsDisabled < ActiveRecord::Migration[5.2]
  DOWNTIME = false

  def change
    add_column :namespaces, :emails_disabled, :boolean # rubocop:disable Migration/AddColumnsToWideTables
  end
end