From b29365aaa865630d10f2f0473e34cea9db6a287d Mon Sep 17 00:00:00 2001 From: Patrick Brady Date: Tue, 12 Mar 2019 13:52:03 -0700 Subject: [PATCH] Fix database entry data Columns were in the wrong order. Change-Id: Ia4614f8200a528511531361e6cb80b3833faa678 Signed-off-by: Patrick Brady Issue-ID: APPC-1528 --- installation/appc/src/main/resources/sqlData.dump | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/installation/appc/src/main/resources/sqlData.dump b/installation/appc/src/main/resources/sqlData.dump index 7b067f0..e198a75 100644 --- a/installation/appc/src/main/resources/sqlData.dump +++ b/installation/appc/src/main/resources/sqlData.dump @@ -51,5 +51,5 @@ INSERT INTO DOWNLOAD_DG_REFERENCE (DOWNLOAD_DG_REFERENCE_ID, PROTOCOL, DOWNLOAD_ UNLOCK TABLES; LOCK TABLES `DEVICE_AUTHENTICATION` WRITE; -INSERT INTO DEVICE_AUTHENTICATION (DEVICE_AUTHENTICATION_ID, VNF_TYPE, PROTOCOL, ACTION, USER_NAME, PASSWORD, URL) VALUES (1, 'ANSIBLE', '', '', 'admin','admin', 'http://appc-ansible-server:8000/Dispatch'); +INSERT INTO DEVICE_AUTHENTICATION (PROTOCOL, VNF_TYPE, ACTION, USER_NAME, PASSWORD, URL) VALUES ('ANSIBLE', '', '', 'admin','admin', 'http://appc-ansible-server:8000/Dispatch'); UNLOCK TABLES; -- 2.16.6