aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPatrick Brady <pb071s@att.com>2018-07-25 16:12:47 -0700
committerPatrick Brady <pb071s@att.com>2018-07-25 16:12:51 -0700
commit80147e51fe9481ae042593bf8173ad0d39f06b8a (patch)
tree3a26dd3c2d80208267ff5931a619c89ea78635cd
parentb581c186ff9d7fef8194c0d69f827ca153dfcd45 (diff)
Change column to varchar
The code seems to be trying to treat the port number column of the DEVICE_AUTHENTICATION table as a string and not an integer. Setting the column to varchar. Change-Id: I19f35ac6bdb3ae2ede991e82f177de0f00cdf99e Signed-off-by: Patrick Brady <pb071s@att.com> Issue-ID: APPC-1107
-rw-r--r--installation/appc/src/main/resources/sdnctl.dump2
1 files changed, 1 insertions, 1 deletions
diff --git a/installation/appc/src/main/resources/sdnctl.dump b/installation/appc/src/main/resources/sdnctl.dump
index af3be88..a171d6b 100644
--- a/installation/appc/src/main/resources/sdnctl.dump
+++ b/installation/appc/src/main/resources/sdnctl.dump
@@ -215,7 +215,7 @@ CREATE TABLE `DEVICE_AUTHENTICATION` (
`ACTION` varchar(150) DEFAULT NULL,
`USER_NAME` varchar(50) DEFAULT NULL,
`PASSWORD` varchar(100) DEFAULT NULL,
- `PORT_NUMBER` int(11) DEFAULT NULL,
+ `PORT_NUMBER` varchar(50) DEFAULT NULL,
`URL` varchar(150) DEFAULT NULL,
PRIMARY KEY (`DEVICE_AUTHENTICATION_ID`),
UNIQUE KEY `DEVICE_AUTHENTICATION_ID` (`DEVICE_AUTHENTICATION_ID`)