On Tue, Jan 6, 2026 at 10:19 AM Siraj G <tosiraj(dot)g(at)gmail(dot)com> wrote:
> Connected to postgres DB and ran:
> CREATE EXTENSION pgaudit;
>
>
"create extension" always executes strictly within the database you are
connected to. It may have effects that go beyond that database, depending
on what the extension does, but absent documentation to the contrary assume
that an extension only operates within the database it was installed into.
David J.