Migrate old web push subscriptions to ensure deliveries (#7764)
parent
85470ec872
commit
18e1de6a16
|
@ -0,0 +1,17 @@
|
||||||
|
class MigrateWebPushSubscriptions2 < ActiveRecord::Migration[5.2]
|
||||||
|
disable_ddl_transaction!
|
||||||
|
|
||||||
|
def up
|
||||||
|
Web::PushSubscription.where(user_id: nil).select(:id).includes(:session_activation).find_each do |subscription|
|
||||||
|
if subscription.session_activation.nil?
|
||||||
|
subscription.delete
|
||||||
|
else
|
||||||
|
subscription.update_attribute(:user_id, subscription.session_activation.user_id)
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
def down
|
||||||
|
# Nothing to do
|
||||||
|
end
|
||||||
|
end
|
|
@ -10,7 +10,7 @@
|
||||||
#
|
#
|
||||||
# It's strongly recommended that you check this file into your version control system.
|
# It's strongly recommended that you check this file into your version control system.
|
||||||
|
|
||||||
ActiveRecord::Schema.define(version: 2018_05_28_141303) do
|
ActiveRecord::Schema.define(version: 2018_06_09_104432) do
|
||||||
|
|
||||||
# These are extensions that must be enabled in order to support this database
|
# These are extensions that must be enabled in order to support this database
|
||||||
enable_extension "plpgsql"
|
enable_extension "plpgsql"
|
||||||
|
|
Reference in New Issue