mirror of
https://github.com/discourse/discourse.git
synced 2024-11-22 22:21:55 +08:00
6e1fe22a9d
Ability to dismiss new topics per category.
12 lines
284 B
Ruby
12 lines
284 B
Ruby
# frozen_string_literal: true
|
|
|
|
class ChangeNotificationLevel < ActiveRecord::Migration[6.0]
|
|
def up
|
|
change_column :category_users, :notification_level, :integer, null: true
|
|
end
|
|
|
|
def down
|
|
change_column :category_users, :notification_level, :integer, null: false
|
|
end
|
|
end
|