This commit is contained in:
Michele Artini 2021-06-11 15:50:29 +02:00
parent d638790c78
commit ae3db17485
2 changed files with 12 additions and 1 deletions

View File

@ -2,7 +2,7 @@ server.port=8080
spring.profiles.active=dev
maven.pom.path = /META-INF/maven/eu.dnetlib.dhp/dnet-directindex-application/effective-pom.xml
maven.pom.path = /META-INF/maven/eu.dnetlib.dhp/dnet-directindex-api/effective-pom.xml
spring.main.banner-mode = off

View File

@ -0,0 +1,11 @@
DROP TABLE IF EXISTS records;
CREATE TABLE records(
id text PRIMARY KEY,
type text,
operation text NOT NULL,
body text,
created_by text,
creation_date timestamp with time zone NOT NULL DEFAULT now(),
execution_date timestamp with time zone
);