-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
bug: retry feature pull with backoff + add missing fields from org su…
…bscriptions (#372) * bug: retry feature pull with backoff Signed-off-by: Sarah Funkhouser <[email protected]> * linter Signed-off-by: Sarah Funkhouser <[email protected]> * bug: fix missing operation context when not a graph request Signed-off-by: Sarah Funkhouser <[email protected]> * feat: add missing fields, fix subscriptionURL bug Signed-off-by: Sarah Funkhouser <[email protected]> * linter Signed-off-by: Sarah Funkhouser <[email protected]> * move check to function Signed-off-by: Sarah Funkhouser <[email protected]> --------- Signed-off-by: Sarah Funkhouser <[email protected]>
- Loading branch information
1 parent
fe5f729
commit de8b7ce
Showing
45 changed files
with
901 additions
and
92 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
11 changes: 11 additions & 0 deletions
11
db/migrations-goose-postgres/20250110162830_subscription_price.sql
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
-- +goose Up | ||
-- modify "org_subscription_history" table | ||
ALTER TABLE "org_subscription_history" ADD COLUMN "product_price" jsonb NULL; | ||
-- modify "org_subscriptions" table | ||
ALTER TABLE "org_subscriptions" ADD COLUMN "product_price" jsonb NULL; | ||
|
||
-- +goose Down | ||
-- reverse: modify "org_subscriptions" table | ||
ALTER TABLE "org_subscriptions" DROP COLUMN "product_price"; | ||
-- reverse: modify "org_subscription_history" table | ||
ALTER TABLE "org_subscription_history" DROP COLUMN "product_price"; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,6 @@ | ||
h1:QXCrkYR4vxggy2Kk14xhgOkCom8B/+rl+I7Rgzroh0k= | ||
h1:TRyOA0hBgJWu/ryMtc4bGT7xQ4ZM7obgNDeGGFkC+No= | ||
20241211231032_init.sql h1:Cj6GduEDECy6Y+8DfI6767WosqG2AKWybIyJJ6AgKqA= | ||
20241212223714_consistent_naming.sql h1:RvnNmsStlHkmAdSCnX1fFh/KYgfj1RMYYEc4iCN9JcQ= | ||
20250109002850_billing_address.sql h1:m0ek3WXqRgS3+ZbSa/DcIMB16vb8Tjm2MgNqyRll3rU= | ||
20250109054654_remove_stripe_id.sql h1:OfeshKT2+ydfx+36e4uBrdQ31tuurcJsKXyYDp1ZiZg= | ||
20250110162830_subscription_price.sql h1:ju8ocKPbqtOalaBZ1aGk8qCDLbgxFCDoA0Dmkr9bLzA= |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
-- Modify "org_subscription_history" table | ||
ALTER TABLE "org_subscription_history" ADD COLUMN "product_price" jsonb NULL; | ||
-- Modify "org_subscriptions" table | ||
ALTER TABLE "org_subscriptions" ADD COLUMN "product_price" jsonb NULL; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,6 @@ | ||
h1:8AGIgzcKy+aGOwhLSJk/xgL6kfmXBArWQGmrkTdVur4= | ||
h1:erRnNniAqlfYXxANR5MxeFGdCDzegYYF35eOGuZi0Fg= | ||
20241211231032_init.sql h1:TxjpHzKPB/5L2i7V2JfO1y+Cep/AyQN5wGjhY7saCeE= | ||
20241212223712_consistent_naming.sql h1:tbdYOtixhW66Jmvy3aCm+X6neI/SRVvItKM0Bdn26TA= | ||
20250109002849_billing_address.sql h1:mspCGbJ6HVmx3r4j+d/WvruzirJdJ8u5x18WF9R9ESE= | ||
20250109054653_remove_stripe_id.sql h1:dB086/w/Ws7ZK8OvbRWX7ejN4HfizCKxcE3q/+Jv4U8= | ||
20250110162828_subscription_price.sql h1:RlvrTtH6+PIFuJ+Fp5S06w0ho3B2O/Nn6QcWqSHLWEA= |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Oops, something went wrong.