2019-10-12 21:52:04 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class AddGroupEmailsDisabled < ActiveRecord::Migration[5.2]
|
|
|
|
DOWNTIME = false
|
|
|
|
|
|
|
|
def change
|
2021-03-11 19:13:27 +05:30
|
|
|
add_column :namespaces, :emails_disabled, :boolean # rubocop:disable Migration/AddColumnsToWideTables
|
2019-10-12 21:52:04 +05:30
|
|
|
end
|
|
|
|
end
|