Silence notices in cascade installation

This commit is contained in:
Raúl Marín 2019-12-19 17:52:44 +01:00
parent 1985c1273b
commit ede701202f
2 changed files with 5 additions and 0 deletions

View File

@ -1,3 +1,4 @@
SET client_min_messages TO error;
-- Create role publicuser if it does not exist -- Create role publicuser if it does not exist
DO DO
$$ $$

View File

@ -1,3 +1,6 @@
\set ECHO none
\set QUIET on
SET client_min_messages TO error;
-- Create role publicuser if it does not exist -- Create role publicuser if it does not exist
DO DO
$$ $$
@ -14,3 +17,4 @@ $$ LANGUAGE plpgsql;
-- Install the extension -- Install the extension
CREATE EXTENSION crankshaft VERSION 'dev' CASCADE; CREATE EXTENSION crankshaft VERSION 'dev' CASCADE;
\set QUIET off