You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently, pa_application_version.application_key is varchar(255) but in other tables, the size is only varchar(32).
Remember that in MS SQL, it is not possible to execute a simple ALTER TABLE; first, the index has to be dropped. Then, the column could be altered, and the index should be recreated.
Currently,
pa_application_version.application_key
isvarchar(255)
but in other tables, the size is onlyvarchar(32)
.Remember that in MS SQL, it is not possible to execute a simple
ALTER TABLE
; first, the index has to be dropped. Then, the column could be altered, and the index should be recreated.Related to #1711 and #1725
The text was updated successfully, but these errors were encountered: