Enable pg_cron in a migration
I'm currently trying to use the pg_cron extension. However when I try to enable it in a migration using
It's probably because the Supabase CLI creates a database named after the current branch (default
Is there a way around this? If I try to enable the extension after I started the server it does work however I need to be able to use it in migrations.
CREATE EXTENSION pg_cron; I get the following error:It's probably because the Supabase CLI creates a database named after the current branch (default
main) and only later renames it to postgres.Is there a way around this? If I try to enable the extension after I started the server it does work however I need to be able to use it in migrations.