Fix: Remove old versioning functions

This commit is contained in:
gpt-engineer-app[bot]
2025-10-15 18:15:01 +00:00
parent 455c1da203
commit 2d06dcc537

View File

@@ -0,0 +1,6 @@
-- Enable pg_cron extension for automated cleanup
CREATE EXTENSION IF NOT EXISTS pg_cron;
-- Grant necessary permissions to postgres role
GRANT USAGE ON SCHEMA cron TO postgres;
GRANT ALL PRIVILEGES ON ALL TABLES IN SCHEMA cron TO postgres;