mirror of
https://github.com/Retrospring/retrospring.git
synced 2024-11-20 14:29:53 +01:00
11 lines
392 B
Ruby
11 lines
392 B
Ruby
# frozen_string_literal: true
|
|
|
|
class MoveAppendableNotifications < ActiveRecord::Migration[7.0]
|
|
def up
|
|
Notification::where(target_type: "Appendable").update_all(target_type: "Reaction") # rubocop:disable Rails/SkipsModelValidations
|
|
end
|
|
|
|
def down
|
|
Notification::where(target_type: "Reaction").update_all(type: "Appendable") # rubocop:disable Rails/SkipsModelValidations
|
|
end
|
|
end
|