-
Notifications
You must be signed in to change notification settings - Fork 15
feat: add pg_cron, pg_net, pgsodium, and supabase_vault extensions to Atlas database #508
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: 12-04-add_mark_worker_stopped_sql_function_for_graceful_shutdown_signaling
Are you sure you want to change the base?
Conversation
|
|
View your CI Pipeline Execution ↗ for commit a529caf
☁️ Nx Cloud last updated this comment at |
dbb4e58 to
e6d1032
Compare
8691cab to
d1a041a
Compare
e6d1032 to
8e3510f
Compare
d1a041a to
38fc7d2
Compare
38fc7d2 to
eed5f12
Compare
8e3510f to
404fa0c
Compare
eed5f12 to
a529caf
Compare
404fa0c to
389d7b8
Compare
🔍 Preview Deployment: Website✅ Deployment successful! 🔗 Preview URL: https://pr-508.pgflow.pages.dev 📝 Details:
_Last updated: _ |
| -- Create extension "pg_net" | ||
| CREATE EXTENSION IF NOT EXISTS "pg_net" WITH SCHEMA "public"; | ||
| -- Create extension "pg_cron" | ||
| CREATE EXTENSION IF NOT EXISTS "pg_cron"; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This new migration file is causing CI to fail because no changeset was created to document it. Run 'changeset add' to create a proper changeset for this migration, or run 'changeset add --empty' if this migration doesn't require a package release.
Spotted by Graphite Agent (based on CI logs)
Is this helpful? React 👍 or 👎 to let us know.

Add PostgreSQL extensions for pgflow worker management
This PR adds several PostgreSQL extensions to the Atlas development database to support pgflow worker management:
pg_cronfor scheduled job executionpg_netfor making HTTP requests from SQL (needed for pinging edge functions)pgsodiumandsupabase_vaultfor secure credential storageThe changes include:
jumski/atlas-postgres-pgflow:latestto better reflect its purposeThese extensions will enable pgflow to securely store credentials, make HTTP requests, and schedule recurring tasks for worker management.