mirror of
https://github.com/discourse/discourse.git
synced 2024-11-23 06:04:11 +08:00
8 lines
285 B
Ruby
8 lines
285 B
Ruby
class AddNotificationsToTopicUsers < ActiveRecord::Migration[4.2]
|
|
def change
|
|
add_column :topic_users, :notifications, :integer, default: 2
|
|
add_column :topic_users, :notifications_changed_at, :datetime
|
|
add_column :topic_users, :notifications_reason_id, :integer
|
|
end
|
|
end
|