fixes
This commit is contained in:
parent
dfe4c38b40
commit
0d408ff68a
|
@ -20,10 +20,10 @@ spring.mail.properties.mail.smtp.auth=false
|
|||
spring.mail.properties.mail.smtp.starttls.enable=false
|
||||
|
||||
####################CONFIGURATION FILES OVERRIDES CONFIGURATIONS##########
|
||||
configuration.externalUrls=
|
||||
configuration.rda=
|
||||
configuration.h2020template=
|
||||
configuration.configurable_login_providers=
|
||||
configuration.externalUrls=externalUrls/ExternalUrls.xml
|
||||
configuration.rda=RDACommonStandards.txt
|
||||
configuration.h2020template=documents/h2020.docx
|
||||
configuration.configurable_login_providers=ConfigurableLoginProviders.json
|
||||
|
||||
#############LOGIN CONFIGURATIONS#########
|
||||
#############GENERIC LOGIN CONFIGURATIONS#########
|
||||
|
|
|
@ -1,4 +1,10 @@
|
|||
DROP TABLE IF EXISTS "UserAssociation";
|
||||
DO $$DECLARE
|
||||
this_version CONSTANT varchar := '00.00.005';
|
||||
BEGIN
|
||||
PERFORM * FROM "DBVersion" WHERE version = this_version;
|
||||
IF FOUND THEN RETURN; END IF;
|
||||
|
||||
INSERT INTO public."DBVersion" VALUES ('DMPDB', '00.00.005', '2020-06-03 12:00:00.000000+03', now(), 'Remove user association table');
|
||||
DROP TABLE IF EXISTS "UserAssociation";
|
||||
|
||||
INSERT INTO public."DBVersion" VALUES ('DMPDB', '00.00.005', '2020-06-03 12:00:00.000000+03', now(), 'Remove user association table');
|
||||
END$$;
|
Loading…
Reference in New Issue