diff options
author | Patrick Brady <pb071s@att.com> | 2018-09-11 11:56:15 -0700 |
---|---|---|
committer | Patrick Brady <pb071s@att.com> | 2018-09-11 11:56:19 -0700 |
commit | 10147e9d4c773bdfa0502f6d31487ac5be5146b3 (patch) | |
tree | b4cc26c5196a4b5d0949270e3eaa65b68cf19c04 /installation | |
parent | 3fad8837732726decb60a2ce54bcaadb1249e89e (diff) |
Add dg reference table rows
Change-Id: I953adee5554c00374dc2c43e699f2d57a50bd152
Signed-off-by: Patrick Brady <pb071s@att.com>
Issue-ID: APPC-1202
Diffstat (limited to 'installation')
-rw-r--r-- | installation/appc/src/main/resources/sqlData.dump | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/installation/appc/src/main/resources/sqlData.dump b/installation/appc/src/main/resources/sqlData.dump index d272d4d..22cd779 100644 --- a/installation/appc/src/main/resources/sqlData.dump +++ b/installation/appc/src/main/resources/sqlData.dump @@ -43,5 +43,10 @@ UNLOCK TABLES; LOCK TABLES `DOWNLOAD_DG_REFERENCE` WRITE; INSERT INTO `DOWNLOAD_DG_REFERENCE` VALUES (1,'NETCONF-XML','DownloadXmlConfig'); +INSERT INTO DOWNLOAD_DG_REFERENCE (DOWNLOAD_DG_REFERENCE_ID, PROTOCOL, DOWNLOAD_CONFIG_DG) VALUES (0, 'ANSIBLE', 'DownloadAnsibleConfig'); +INSERT INTO DOWNLOAD_DG_REFERENCE (DOWNLOAD_DG_REFERENCE_ID, PROTOCOL, DOWNLOAD_CONFIG_DG) VALUES (0, 'CHEF', 'Generic_ChefDG'); +INSERT INTO DOWNLOAD_DG_REFERENCE (DOWNLOAD_DG_REFERENCE_ID, PROTOCOL, DOWNLOAD_CONFIG_DG) VALUES (0, 'CLI', 'DownloadIsbcConfig'); +INSERT INTO DOWNLOAD_DG_REFERENCE (DOWNLOAD_DG_REFERENCE_ID, PROTOCOL, DOWNLOAD_CONFIG_DG) VALUES (0, 'RESTCONF', 'DownloadRestconfConfig'); +INSERT INTO DOWNLOAD_DG_REFERENCE (DOWNLOAD_DG_REFERENCE_ID, PROTOCOL, DOWNLOAD_CONFIG_DG) VALUES (0, 'NETCONF', 'DownloadXmlConfig'); UNLOCK TABLES; |