mirror of
https://github.com/discourse/discourse.git
synced 2024-12-02 13:39:36 -06:00
11 lines
350 B
Ruby
11 lines
350 B
Ruby
class AddSeenNotificationIdToUsers < ActiveRecord::Migration[4.2]
|
|
def change
|
|
|
|
execute "TRUNCATE TABLE notifications"
|
|
|
|
add_column :users, :seen_notificaiton_id, :integer, default: 0, null: false
|
|
add_column :notifications, :forum_thread_id, :integer, null: true
|
|
add_column :notifications, :post_number, :integer, null: true
|
|
end
|
|
end
|