Skip to content
Snippets Groups Projects
Unverified Commit db20fb19 authored by Martin Weise's avatar Martin Weise
Browse files

Fixed some more tests

parent a9f54003
No related branches found
No related tags found
3 merge requests!129New module for citation as they occur multiple,!121Modified logging, modified logging level, modified flasgger endpoint,!114Modified a bunch of services to accept the new access rights and push them...
......@@ -9,7 +9,7 @@ spring.cloud.config.discovery.enabled = false
spring.cloud.config.enabled = false
# disable datasource
spring.datasource.url=jdbc:h2:mem:testdb;DB_CLOSE_ON_EXIT=FALSE;INIT=CREATE SCHEMA IF NOT EXISTS FDA
spring.datasource.url=jdbc:h2:mem:testdb;DATABASE_TO_UPPER=false;DB_CLOSE_ON_EXIT=FALSE;INIT=RUNSCRIPT FROM './src/test/resources/init.sql'
spring.datasource.driverClassName=org.h2.Driver
spring.datasource.username=sa
spring.datasource.password=password
......
CREATE SCHEMA IF NOT EXISTS fda;
DROP TABLE IF EXISTS fda.mdb_concepts CASCADE;
CREATE TABLE IF NOT EXISTS fda.mdb_concepts
(
uri varchar(255) not null,
name VARCHAR(255),
created timestamp NOT NULL DEFAULT NOW(),
created_by bigint,
PRIMARY KEY (uri)
);
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please to comment