Customer upgrade OTK from as far back as 3.1 the schema used in the older version defined column apis in table portal_apikey as
mysql> DESCRIBE portal_apikey;
apis | varchar(255) | YES | | NULL | |
There was a change during upgrade where it is now defined as:
mysql> DESCRIBE portal_apikey;
| apis | longtext | YES | | NULL | |
Release : 4.3.2
Component : API MANAGEMENT SAAS
To resolve alter the table type as followed:
mysql> alter table portal_apikey modify apis longtext;