Skip to content
Snippets Groups Projects
Verified Commit 765b694f authored by Damien's avatar Damien
Browse files

FEAT #8548 Add column folder_import

parent 98f889cf
No related branches found
No related tags found
No related merge requests found
...@@ -554,3 +554,6 @@ CREATE TABLE contacts_filling ...@@ -554,3 +554,6 @@ CREATE TABLE contacts_filling
) )
WITH (OIDS=FALSE); WITH (OIDS=FALSE);
INSERT INTO contacts_filling (enable, rating_columns, first_threshold, second_threshold) VALUES (FALSE, '{}', 33, 66); INSERT INTO contacts_filling (enable, rating_columns, first_threshold, second_threshold) VALUES (FALSE, '{}', 33, 66);
ALTER TABLE entities ADD COLUMN folder_import character varying(64);
ALTER TABLE entities ADD UNIQUE (folder_import);
...@@ -461,7 +461,9 @@ CREATE TABLE entities ...@@ -461,7 +461,9 @@ CREATE TABLE entities
ldap_id character varying(255), ldap_id character varying(255),
archival_agency character varying(255), archival_agency character varying(255),
archival_agreement character varying(255), archival_agreement character varying(255),
CONSTRAINT entities_pkey PRIMARY KEY (entity_id) folder_import character varying(64),
CONSTRAINT entities_pkey PRIMARY KEY (entity_id),
CONSTRAINT entities_folder_import_unique_key UNIQUE (folder_import)
) )
WITH (OIDS=FALSE); WITH (OIDS=FALSE);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment