Skip to content

Latest commit

 

History

History
25 lines (16 loc) · 502 Bytes

PowerAuth-Server-1.2.0.md

File metadata and controls

25 lines (16 loc) · 502 Bytes

Migration from 1.1.x to 1.2.x

This guide contains instructions for migration from PowerAuth Server version 1.1.x to version 1.2.x.

Database Changes

The pa_application_callback table was updated to include request authentication.

Oracle

ALTER TABLE PA_APPLICATION_CALLBACK ADD AUTHENTICATION CLOB;

PostgreSQL

ALTER TABLE pa_application_callback ADD authentication TEXT;

MySQL

ALTER TABLE pa_application_callback ADD authentication TEXT;