mirror of
https://github.com/pacnpal/thrilltrack-explorer.git
synced 2025-12-20 04:51:11 -05:00
6 lines
241 B
SQL
6 lines
241 B
SQL
-- 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; |