Skip to content

Commit

Permalink
Add column to track when we registered pns notifications
Browse files Browse the repository at this point in the history
This will let us register for platform notifications when we get the first launch in a deployment and track that we have done it.
  • Loading branch information
dspencer001 committed Jul 4, 2024
1 parent 0506ba1 commit b537529
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 0 deletions.
4 changes: 4 additions & 0 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -124,6 +124,8 @@ GEM
net-smtp (0.5.0)
net-protocol
nio4r (2.7.3)
nokogiri (1.16.6-arm64-darwin)
racc (~> 1.4)
nokogiri (1.16.6-x86_64-darwin)
racc (~> 1.4)
nokogiri (1.16.6-x86_64-linux)
Expand Down Expand Up @@ -181,6 +183,7 @@ GEM
actionpack (>= 5.2)
activesupport (>= 5.2)
sprockets (>= 3.0.0)
sqlite3 (1.6.3-arm64-darwin)
sqlite3 (1.6.3-x86_64-darwin)
sqlite3 (1.6.3-x86_64-linux)
stringio (3.1.1)
Expand All @@ -195,6 +198,7 @@ GEM
zeitwerk (2.6.16)

PLATFORMS
arm64-darwin-23
x86_64-darwin-22
x86_64-linux

Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
class AddAtomicTenantLtiDeploymentPlatformNotificationStatus < ActiveRecord::Migration[7.1]
def change
add_column :atomic_tenant_lti_deployments, :registered_pns_notifications_at, :timestamptz
end
end

0 comments on commit b537529

Please sign in to comment.