mirror of
https://github.com/google/nomulus
synced 2026-06-01 04:26:34 +00:00
15 lines
715 B
Plaintext
15 lines
715 B
Plaintext
CREATE EXTENSION IF NOT EXISTS pgaudit WITH SCHEMA public;
|
|
COMMENT ON EXTENSION pgaudit IS 'provides auditing functionality';
|
|
SET default_with_oids = false;
|
|
CREATE EXTENSION IF NOT EXISTS pg_stat_statements WITH SCHEMA public;
|
|
COMMENT ON EXTENSION pg_stat_statements IS 'track execution statistics of all SQL statements executed';
|
|
SET transaction_timeout = 0;
|
|
SET default_table_access_method = heap;
|
|
SET default_with_oids = false;
|
|
^\\restrict
|
|
^\\unrestrict
|
|
CREATE SCHEMA google_vacuum_mgmt;
|
|
CREATE EXTENSION IF NOT EXISTS google_vacuum_mgmt WITH SCHEMA google_vacuum_mgmt;
|
|
COMMENT ON EXTENSION google_vacuum_mgmt IS 'extension for assistive operational tooling';
|
|
-- \*not\* creating schema, since initdb creates it
|