The implementation of Names was significantly modified in v0.8.3 (CO-333). To update a pre-v0.8.3 database, execute the following SQL after updating the database schema:

Flag all existing names as primary names. (v0.8.3 allows multiple names per Org Identity or CO Person.)

SQL> update cm_names set primary_name = true;

Reconfigure any enrollment flow attributes that collected a Preferred CO Person Name to consider the name of type Official instead.

SQL> update cm_co_enrollment_attributes set attribute = 'p:name:O' where attribute = 'p:name:P';
  • No labels