scinote-web/db/migrate/20231011103114_migrate_notification_to_noticed.rb

52 lines
1.6 KiB
Ruby
Raw Normal View History

2023-10-11 19:43:20 +08:00
# frozen_string_literal: true
class MigrateNotificationToNoticed < ActiveRecord::Migration[7.0]
def up
add_column :notifications, :params, :jsonb, default: {}, null: false
add_column :notifications, :type, :string
2023-10-11 19:43:20 +08:00
add_column :notifications, :read_at, :datetime
add_column :notifications, :recipient_id, :bigint
add_column :notifications, :recipient_type, :string
type_mapping = {
'assignment' => 'ActivityNotification',
'recent_changes' => 'GeneralNotification',
'deliver' => 'DeliveryNotification',
'deliver_error' => 'DeliveryNotification'
}
UserNotification.includes(:notification).find_each do |user_notification|
2023-10-11 19:43:20 +08:00
notification = user_notification.notification.dup
new_type = type_mapping[notification.type_of]
params = {
title: notification.title,
message: notification.message,
legacy: true
}
params[:error] = notification.type_of == 'deliver_error' if new_type == 'DeliveryNotification'
2023-10-11 19:43:20 +08:00
notification.update(
params: params,
type: new_type,
read_at: (user_notification.updated_at if user_notification.checked),
recipient_id: user_notification.user_id,
recipient_type: 'User',
created_at: user_notification.created_at,
updated_at: user_notification.updated_at
)
end
Notification.where(type: nil).destroy_all
change_column_null :notifications, :type, false
2023-10-11 19:43:20 +08:00
remove_column :notifications, :type_of
remove_column :notifications, :title
remove_column :notifications, :message
remove_column :notifications, :generator_user_id
end
end