How do I stop psql (PostgreSQL client) from outputting notices? e.g.
psql:schema/auth.sql:20: NOTICE: CREATE TABLE / PRIMARY KEY will create implicit
It can be set in the global postgresql.conf file as well with modifiying the client_min_messages parameter.
postgresql.conf
client_min_messages
Example:
client_min_messages = warning