How to Create Customer Attribute Using Data Patch

Blog
Spread the love

Today we will learn how we can create a custom customer attribute through a data patch but first we
should know a little bit about data patches.

Data Patch:

  • It is a class that stores instructions for data modification.
  • InstallData and UpgradeData were used in Magento 2.1 and 2.2. This script works in Magento 2.3.x also but being a Professional Developer one should use a data patch to add or modify EAV data.
  • Magento 2.3.x has introduced the Data Patch Interface Magento\Framework\Setup\Patch\DataPatchInterface to add or modify the EAV data.
  • DataPatchInterface must implement three functions: apply(), getDependencies() and getAliases()
  • All data patches should be inside app/code/[vendor_name]/[module_name]/Setup/Patch/Data.

Note: Patches will only be applied once and stored in the patch_list database table.

To create a custom customer attribute through a data patch, follow the steps which are given below:

Step 1: Create Basic Module

Create registration.php file under app/code/[vendor_name]/[module_name]

(In my case, vendor_name is ‘Bluethink’ and module_name is ‘CustomerAttribute’)

Now, create module.xml file under app/code/Bluethink/CustomerAttribute/etc

Step 2: Create a Data Patch file

Create CustomAttribute.php file under app/code/Bluethink/CustomerAttribute/Setup/Patch/Data

In Last, Now just execute the below command:

apply() function is used to define your core logic for installing/upgrading data to the database.

getAliases() function defines aliases for the patch class. In this case, the class name could possibly
change, and if it does, we should supply the old class-name here, so that it doesn’t get executed a
second time.

getDependencies() function contain the class name of dependent patches. This functionality notifies
Magento to execute the “patches”. We first define it here, before the patch script.

Thanks for reading my blog. I hope you would learn a lot of things from this blog. Keep liking and
sharing!!

bluethinkinc_blog

bluethinkinc_blog

2022-08-09

0

Leave a Reply

Your email address will not be published. Required fields are marked *

Find More Blogs

Custom API to Fetch Customer Data by Customer ID in Spryker

Spread the love Introduction In this blog post, we will

Creating a Custom Module for a Custom Frontend Page in Spryker

Spread the love To create a custom module for a custom

How to create custom module api get category list without access token in Spryker

Spread the love To create a custom API for fetching a

Creating a Custom Glue API in Spryker

Spread the love Spryker’s Glue API is a powerful tool

Get AI Generated 360-Degree View of Account Summary in Dynamics 365 Sales

Spread the love Navigating the demanding landscape of sales

Enhancing Productivity with Dynamics 365: The Power of Session Restore

Spread the love Enhancing Productivity with Dynamics 365:

Salesforce Admin

Spread the love In our last blog, we discussed common

Unlocking AI with Spring Boot: Real-World Use Cases and Solutions

Spread the love Artificial Intelligence (AI) has moved from

Enhancing Performance with Reactive Java: A Beginner-Friendly Guide

Spread the love In today’s fast-paced software

Integrating Azure Function with Dynamics 365

Spread the love Signup on azure portal and make sure to

bluethinkinc Blogs