schema
This commit is contained in:
parent
d638790c78
commit
ae3db17485
|
@ -2,7 +2,7 @@ server.port=8080
|
||||||
|
|
||||||
spring.profiles.active=dev
|
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
|
spring.main.banner-mode = off
|
||||||
|
|
||||||
|
|
|
@ -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
|
||||||
|
);
|
Loading…
Reference in New Issue