Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Migration of unmigrated content due to installation of a new plugin

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.)

Code Block
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.

Code Block
SQL> update cm_co_enrollment_attributes set attribute = 'p:name:O' where attribute = 'p:name:P';