summaryrefslogtreecommitdiff
path: root/db/migrate/20191114132259_add_mentions_disabled_to_namespaces.rb
blob: dbd69568ef21c758a04c5d6e922e9048ede3828a (plain)
1
2
3
4
5
6
7
8
9
# frozen_string_literal: true

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

  def change
    add_column :namespaces, :mentions_disabled, :boolean
  end
end