2020-01-01 13:55:28 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class AddMentionsDisabledToNamespaces < ActiveRecord::Migration[5.2]
|
|
|
|
DOWNTIME = false
|
|
|
|
|
|
|
|
def change
|
2021-03-11 19:13:27 +05:30
|
|
|
add_column :namespaces, :mentions_disabled, :boolean # rubocop:disable Migration/AddColumnsToWideTables
|
2020-01-01 13:55:28 +05:30
|
|
|
end
|
|
|
|
end
|