9 lines
240 B
Ruby
9 lines
240 B
Ruby
# 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
|