SQL : fix create extension for account_repository

This commit is contained in:
Dany De Bontridder 2018-02-10 22:47:24 +01:00
parent 98b5aab93a
commit dc31fdfd06
2 changed files with 0 additions and 3 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

@ -6,11 +6,9 @@ SET check_function_bodies = false;
SET client_min_messages = warning;
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;