2
0
Fork 0
mirror of https://github.com/discourse/discourse.git synced 2025-09-05 08:59:27 +08:00
discourse/db/migrate/20121207000741_add_notifications_to_topic_users.rb

7 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