This commit is contained in:
Michele Artini 2023-10-20 14:01:53 +02:00
parent 6d4159a24a
commit b01486f402
3 changed files with 5 additions and 2 deletions

View File

@ -8,7 +8,7 @@ BEGIN;
-- WF History
CREATE TABLE wf_history (
process_id text PRIMARY KEY
process_id text PRIMARY KEY,
wf_template_id text NOT NULL,
wf_conf_id text,
wf_executor text,

View File

@ -1,8 +1,11 @@
package eu.dnetlib.wfs.output.oai;
import org.springframework.stereotype.Service;
import eu.dnetlib.domain.mdstore.records.MetadataRecord;
import eu.dnetlib.domain.oai.OaiConfiguration;
@Service
public class OaiService {
public boolean exists(final String oaiConfId) {

View File

@ -148,7 +148,7 @@ services:
- ./data/sql/vocabularies.sql:/docker-entrypoint-initdb.d/init_vocabularies.sql
- ./data/sql/contexts.sql:/docker-entrypoint-initdb.d/init_contexts.sql
- ./data/sql/mdstores.sql:/docker-entrypoint-initdb.d/init_mdstores.sql
- ./data/sql/instances/openportals.sql:/docker-entrypoint-initdb.d/init_openportals.sql
- ./data/sql/instances/openportals.sql:/docker-entrypoint-initdb.d/instances/init_openportals.sql
db-mdstores:
image: postgres:15.4