A merchant tasked you to add an input field for notes to the Customer Account Information backend page. Which three actions do you specify in a module's Data Patch to add a customer notes attribute? (Choose three.)
A.
$cache->clean(['eav', 'db_ddl']);
B.
$customerSetup->addAttribute('customer', 'notes', $options);
C.
$customerSetup->getConnection()->addColumn('customer_entity', 'notes', $columnSpecs);
D.
$notesAttribute->setData('used_in_forms', ['adminhtml_customer']);
E.
$customerSetup->addAttributeToSet('customer', $attributeSetIdCustomer, $groupId, 'notes');
A voting comment increases the vote count for the chosen answer by one.
Upvoting a comment with a selected answer will also increase the vote count towards that answer by one.
So if you see a comment that you already agree with, you can upvote it instead of posting a new comment.
Comments