Correct merge
This commit is contained in:
parent
4a5298f4e4
commit
42e39e4897
4 changed files with 12 additions and 4 deletions
10
include/sql/patch/upgrade192.sql
Normal file
10
include/sql/patch/upgrade192.sql
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
begin;
|
||||
create table action_comment_document (acd_id bigint generated by default as identity primary key
|
||||
, document_id bigint references document(d_id) on delete cascade on update cascade,
|
||||
action_gestion_comment_id bigint references action_gestion_comment(agc_id) on delete cascade on update cascade);
|
||||
|
||||
alter table action_comment_document
|
||||
add constraint action_comment_document_un
|
||||
unique (document_id, action_gestion_comment_id);
|
||||
insert into version (val,v_description) values (193,' 2332: Suivi : ajout fichier lié aux commentaires');
|
||||
commit;
|
||||
Loading…
Add table
Add a link
Reference in a new issue