Files
discourse/db/migrate/20121207000741_add_notifications_to_topic_users.rb
2017-09-25 13:48:58 +08:00

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