SQL : remove comment on extension

This commit is contained in:
Dany De Bontridder 2018-02-10 22:24:41 +01:00
parent 31e32d308a
commit e1e56eae86
4 changed files with 0 additions and 4 deletions

View file

@ -1,4 +1,3 @@
COMMENT ON EXTENSION plpgsql IS 'PL/pgSQL procedural language';
COMMENT ON COLUMN ac_dossier.dos_email IS 'Max emails per day : 0 none , -1 unlimited or max value';
COMMENT ON COLUMN ac_users.use_email IS 'Email of the user';
COMMENT ON TABLE dossier_sent_email IS 'Count the sent email by folder';

View file

@ -10,7 +10,6 @@ CREATE EXTENSION IF NOT EXISTS plpgsql WITH SCHEMA pg_catalog;
COMMENT ON EXTENSION plpgsql IS 'PL/pgSQL procedural language';
SET search_path = public, pg_catalog;

View file

@ -1,4 +1,3 @@
COMMENT ON EXTENSION plpgsql IS 'PL/pgSQL procedural language';
COMMENT ON FUNCTION correct_sequence(p_sequence text, p_col text, p_table text) IS ' Often the primary key is a sequence number and sometimes the value of the sequence is not synchronized with the primary key ( p_sequence : sequence name, p_col : col of the pk,p_table : concerned table';
COMMENT ON FUNCTION format_account(p_account public.account_type) IS 'format the accounting :
- upper case

View file

@ -14,7 +14,6 @@ CREATE EXTENSION IF NOT EXISTS plpgsql WITH SCHEMA pg_catalog;
COMMENT ON EXTENSION plpgsql IS 'PL/pgSQL procedural language';
SET search_path = public, pg_catalog;