You are here

function commerce_order_post_update_8 in Commerce Core 8.2

Unlock the profile 'address' field.

File

modules/order/commerce_order.post_update.php, line 126
Post update functions for Order.

Code

function commerce_order_post_update_8() {
  $field = FieldStorageConfig::loadByName('profile', 'address');
  if ($field) {
    $field
      ->setLocked(FALSE);
    $field
      ->save();
  }
}