Error : duplicate function update_row

This commit is contained in:
Dany De Bontridder 2020-06-07 19:24:47 +02:00
commit 9c40c9df68
36 changed files with 929 additions and 197 deletions

View file

@ -0,0 +1,8 @@
begin;
insert into menu_ref (me_code,me_description ,me_file) values ('PDF:operation_detail','Export Operation','export_operation_pdf.php');
insert into profile_menu(me_code,p_id,p_type_display ,pm_default ) select 'PDF:operation_detail',p_id,'P',0 from profile ;
insert into version (val,v_description) values (144,'Export Operation PDF');
commit;

View file

@ -177,8 +177,7 @@ CREATE TABLE bud_hypothese
CONSTRAINT fk_bud_hypo_pa_id FOREIGN KEY (pa_id)
REFERENCES plan_analytique (pa_id) MATCH SIMPLE
ON UPDATE CASCADE ON DELETE CASCADE
)
WITHOUT OIDS;
);
create sequence seq_bud_hypothese_bh_id;