mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-24 16:18:42 -05:00
11 lines
357 B
Ruby
11 lines
357 B
Ruby
|
class AddSeenNotificationIdToUsers < ActiveRecord::Migration
|
||
|
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
|