mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-11-15 13:45:25 +08:00
10 lines
284 B
Ruby
10 lines
284 B
Ruby
|
class FixNotificationMigration < ActiveRecord::Migration[7.0]
|
||
|
def up
|
||
|
Notification.find_each do |notification|
|
||
|
parsed_params = JSON.parse(notification.params)
|
||
|
parsed_params.delete('_aj_symbol_keys')
|
||
|
notification.update!(params: parsed_params)
|
||
|
end
|
||
|
end
|
||
|
end
|