{"id":39669,"date":"2016-01-15T11:01:17","date_gmt":"2016-01-15T11:01:17","guid":{"rendered":"http:\/\/webkul.com\/blog\/?p=39669"},"modified":"2024-08-13T12:37:38","modified_gmt":"2024-08-13T12:37:38","slug":"how-to-create-a-new-database-table-in-magento-2-0","status":"publish","type":"post","link":"https:\/\/webkul.com\/blog\/how-to-create-a-new-database-table-in-magento-2-0\/","title":{"rendered":"How to create a new database table using InstallSchema in Adobe Commerce (Magento 2)."},"content":{"rendered":"\n<p>Here we will learn, How to create a database table by <strong>InstallSchema<\/strong> in Adobe Commerce (Magento 2). In Adobe Commerce (Magento) 2.3.x and later versions, Adobe Commerce (Magento 2) also provided the functionality to create a new table using <strong>Declarative Schema<\/strong>.<\/p>\n\n\n\n<p>To know more about <strong>Declarative Schema<\/strong>, you can check our another article for <a href=\"https:\/\/webkul.com\/blog\/magento-development-03-creating-tables\/\">Create Tables in Adobe Commerce (Magento 2)<\/a>.<\/p>\n\n\n\n<p><strong>We start by defining the app\/code\/Webkul\/CreateTable\/Setup\/InstallSchema.php<\/strong><\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\">&lt;?php\nnamespace Webkul\\CreateTable\\Setup;\n\nuse Magento\\Framework\\Setup\\InstallSchemaInterface;\nuse Magento\\Framework\\Setup\\ModuleContextInterface;\nuse Magento\\Framework\\Setup\\SchemaSetupInterface;\nuse Magento\\Framework\\DB\\Ddl\\Table;\n\nclass InstallSchema implements InstallSchemaInterface\n{\n    \/**\n     * Installs DB schema for a module\n     *\n     * @param SchemaSetupInterface $setup\n     * @param ModuleContextInterface $context\n     * @return void\n     *\/\n    public function install(SchemaSetupInterface $setup, ModuleContextInterface $context)\n    {\n        $installer = $setup;\n\n        $installer-&gt;startSetup();\n\n        $table = $installer-&gt;getConnection()\n            -&gt;newTable($installer-&gt;getTable(&#039;my_database_table&#039;))\n            -&gt;addColumn(\n                &#039;entity_id&#039;,\n                Table::TYPE_INTEGER,\n                null,\n                &#091;&#039;identity&#039; =&gt; true, &#039;nullable&#039; =&gt; false, &#039;primary&#039; =&gt; true],\n                &#039;ID&#039;\n            )\n            -&gt;addColumn(\n                &#039;user_name&#039;,\n                Table::TYPE_TEXT,\n                null,\n                &#091;&#039;nullable&#039; =&gt; false, &#039;default&#039; =&gt; &#039;&#039;],\n                &#039;User Name&#039;\n            )\n            -&gt;addColumn(\n                &#039;email&#039;,\n                Table::TYPE_TEXT,\n                null,\n                &#091;&#039;nullable&#039; =&gt; false, &#039;default&#039; =&gt; &#039;&#039;],\n                &#039;User Email&#039;\n            )\n            -&gt;addColumn(\n                &#039;value&#039;,\n                Table::TYPE_DECIMAL,\n                &#039;12,4&#039;,\n                &#091;],\n                &#039;Value&#039;\n            )\n            -&gt;setComment(&#039;About Your Table&#039;);\n        $installer-&gt;getConnection()-&gt;createTable($table);\n\n        $installer-&gt;endSetup();\n    }\n}<\/pre>\n\n\n\n<p>The <em>install<\/em> method is all that is required in above code. Within this method, we would add any relevant code we might have to create the tables and columns we need.<\/p>\n\n\n\n<p>The <em>addColumn<\/em> method is the used to create column. It takes five parameters,<br>from column name, data type, column length, array of additional options,<br>and description.<\/p>\n\n\n\n<p><br>Accepted column data types are:<br>TYPE_BOOLEAN, TYPE_SMALLINT, TYPE_INTEGER, TYPE_BIGINT, TYPE_FLOAT, TYPE_NUMERIC, TYPE_DECIMAL, TYPE_DATE, TYPE_TIMESTAMP, TYPE_DATETIME, TYPE_TEXT, TYPE_BLOB, TYPE_VARBINARY<\/p>\n\n\n\n<p><strong>Note:<\/strong> The module&#8217;s <strong>module.xml<\/strong> file must have <strong>setup_version<\/strong> to create database table using <em>InstallSchema<\/em>.<\/p>\n\n\n\n<p>You can check our another blog for <a href=\"https:\/\/webkul.com\/blog\/create-hello-module-in-magento2\/\">Create Hello World Module in Adobe Commerce (Magento 2)<\/a> step by step.<\/p>\n\n\n\n<p>Now Open the Terminal\/cmd and from the Magento&#8217;s root directory run the below command<br><strong> php bin\/magento setup:upgrade<\/strong><\/p>\n\n\n\n<p>For technical assistance, please email us at <a>support@webkul.com<\/a>. Additionally, explore different solutions to optimize your online store by visiting the <a href=\"https:\/\/webkul.com\/hire-magento-developers\/\">Adobe Commerce extensions<\/a> section.<\/p>\n\n\n\n<p>If you need specialized support or wish to develop custom features, consider hiring <a href=\"https:\/\/webkul.com\/hire-magento-developers\/\">Adobe Commerce Developers<\/a> for your project.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Here we will learn, How to create a database table by InstallSchema in Adobe Commerce (Magento 2). In Adobe Commerce (Magento) 2.3.x and later versions, Adobe Commerce (Magento 2) also provided the functionality to create a new table using Declarative Schema. To know more about Declarative Schema, you can check our another article for Create <a href=\"https:\/\/webkul.com\/blog\/how-to-create-a-new-database-table-in-magento-2-0\/\">[&#8230;]<\/a><\/p>\n","protected":false},"author":4,"featured_media":39671,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[302],"tags":[12967,2604,2602,2603,2460],"class_list":["post-39669","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-magento2","tag-adobe-commerce","tag-create-table","tag-database-table","tag-installschema","tag-magento-2"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v24.5 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>New Database Table using InstallSchema in Adobe Commerce<\/title>\n<meta name=\"description\" content=\"In Adobe Commerce 2.3.x and later versions, Adobe Commerce also provided the functionality to create a new table using Declarative Schema.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/webkul.com\/blog\/how-to-create-a-new-database-table-in-magento-2-0\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"New Database Table using InstallSchema in Adobe Commerce\" \/>\n<meta property=\"og:description\" content=\"In Adobe Commerce 2.3.x and later versions, Adobe Commerce also provided the functionality to create a new table using Declarative Schema.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/webkul.com\/blog\/how-to-create-a-new-database-table-in-magento-2-0\/\" \/>\n<meta property=\"og:site_name\" content=\"Webkul Blog\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/webkul\/\" \/>\n<meta property=\"article:published_time\" content=\"2016-01-15T11:01:17+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-08-13T12:37:38+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2016\/01\/Magneto-Code-Snippet-3.png\" \/>\n\t<meta property=\"og:image:width\" content=\"825\" \/>\n\t<meta property=\"og:image:height\" content=\"260\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"Abhishek Singh\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@webkul\" \/>\n<meta name=\"twitter:site\" content=\"@webkul\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Abhishek Singh\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"2 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/webkul.com\/blog\/how-to-create-a-new-database-table-in-magento-2-0\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/webkul.com\/blog\/how-to-create-a-new-database-table-in-magento-2-0\/\"},\"author\":{\"name\":\"Abhishek Singh\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/person\/573e459f54796eb4195511990de4bfd0\"},\"headline\":\"How to create a new database table using InstallSchema in Adobe Commerce (Magento 2).\",\"datePublished\":\"2016-01-15T11:01:17+00:00\",\"dateModified\":\"2024-08-13T12:37:38+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/webkul.com\/blog\/how-to-create-a-new-database-table-in-magento-2-0\/\"},\"wordCount\":270,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/webkul.com\/blog\/#organization\"},\"image\":{\"@id\":\"https:\/\/webkul.com\/blog\/how-to-create-a-new-database-table-in-magento-2-0\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2016\/01\/Magneto-Code-Snippet-3.png\",\"keywords\":[\"Adobe Commerce\",\"Create Table\",\"Database Table\",\"InstallSchema\",\"Magento 2\"],\"articleSection\":[\"Magento2\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/webkul.com\/blog\/how-to-create-a-new-database-table-in-magento-2-0\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/webkul.com\/blog\/how-to-create-a-new-database-table-in-magento-2-0\/\",\"url\":\"https:\/\/webkul.com\/blog\/how-to-create-a-new-database-table-in-magento-2-0\/\",\"name\":\"New Database Table using InstallSchema in Adobe Commerce\",\"isPartOf\":{\"@id\":\"https:\/\/webkul.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/webkul.com\/blog\/how-to-create-a-new-database-table-in-magento-2-0\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/webkul.com\/blog\/how-to-create-a-new-database-table-in-magento-2-0\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2016\/01\/Magneto-Code-Snippet-3.png\",\"datePublished\":\"2016-01-15T11:01:17+00:00\",\"dateModified\":\"2024-08-13T12:37:38+00:00\",\"description\":\"In Adobe Commerce 2.3.x and later versions, Adobe Commerce also provided the functionality to create a new table using Declarative Schema.\",\"breadcrumb\":{\"@id\":\"https:\/\/webkul.com\/blog\/how-to-create-a-new-database-table-in-magento-2-0\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/webkul.com\/blog\/how-to-create-a-new-database-table-in-magento-2-0\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/webkul.com\/blog\/how-to-create-a-new-database-table-in-magento-2-0\/#primaryimage\",\"url\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2016\/01\/Magneto-Code-Snippet-3.png\",\"contentUrl\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2016\/01\/Magneto-Code-Snippet-3.png\",\"width\":825,\"height\":260},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/webkul.com\/blog\/how-to-create-a-new-database-table-in-magento-2-0\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/webkul.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to create a new database table using InstallSchema in Adobe Commerce (Magento 2).\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/webkul.com\/blog\/#website\",\"url\":\"https:\/\/webkul.com\/blog\/\",\"name\":\"Webkul Blog\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\/\/webkul.com\/blog\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/webkul.com\/blog\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/webkul.com\/blog\/#organization\",\"name\":\"WebKul Software Private Limited\",\"url\":\"https:\/\/webkul.com\/blog\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2021\/08\/webkul-logo-accent-sq.png\",\"contentUrl\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2021\/08\/webkul-logo-accent-sq.png\",\"width\":380,\"height\":380,\"caption\":\"WebKul Software Private Limited\"},\"image\":{\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/webkul\/\",\"https:\/\/x.com\/webkul\",\"https:\/\/www.instagram.com\/webkul\/\",\"https:\/\/www.linkedin.com\/company\/webkul\",\"https:\/\/www.youtube.com\/user\/webkul\/\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/person\/573e459f54796eb4195511990de4bfd0\",\"name\":\"Abhishek Singh\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/d4ac7e0e671bf743359d7e3f140c262d1b16d71106f0a1aeaecca327a2805ae4?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Fmike.png&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/d4ac7e0e671bf743359d7e3f140c262d1b16d71106f0a1aeaecca327a2805ae4?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Fmike.png&r=g\",\"caption\":\"Abhishek Singh\"},\"description\":\"Adobe Commerce certified Magento developer with over 12 years of experience at Webkul. Passionate about scalable Magento 2-based webshops, AI, and multi-channel integrations, Abhishek consistently delivers innovative and efficient e-commerce solutions that propel businesses forward.\",\"sameAs\":[\"http:\/\/webkul.com\"],\"url\":\"https:\/\/webkul.com\/blog\/author\/abhishek\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"New Database Table using InstallSchema in Adobe Commerce","description":"In Adobe Commerce 2.3.x and later versions, Adobe Commerce also provided the functionality to create a new table using Declarative Schema.","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/webkul.com\/blog\/how-to-create-a-new-database-table-in-magento-2-0\/","og_locale":"en_US","og_type":"article","og_title":"New Database Table using InstallSchema in Adobe Commerce","og_description":"In Adobe Commerce 2.3.x and later versions, Adobe Commerce also provided the functionality to create a new table using Declarative Schema.","og_url":"https:\/\/webkul.com\/blog\/how-to-create-a-new-database-table-in-magento-2-0\/","og_site_name":"Webkul Blog","article_publisher":"https:\/\/www.facebook.com\/webkul\/","article_published_time":"2016-01-15T11:01:17+00:00","article_modified_time":"2024-08-13T12:37:38+00:00","og_image":[{"width":825,"height":260,"url":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2016\/01\/Magneto-Code-Snippet-3.png","type":"image\/png"}],"author":"Abhishek Singh","twitter_card":"summary_large_image","twitter_creator":"@webkul","twitter_site":"@webkul","twitter_misc":{"Written by":"Abhishek Singh","Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/webkul.com\/blog\/how-to-create-a-new-database-table-in-magento-2-0\/#article","isPartOf":{"@id":"https:\/\/webkul.com\/blog\/how-to-create-a-new-database-table-in-magento-2-0\/"},"author":{"name":"Abhishek Singh","@id":"https:\/\/webkul.com\/blog\/#\/schema\/person\/573e459f54796eb4195511990de4bfd0"},"headline":"How to create a new database table using InstallSchema in Adobe Commerce (Magento 2).","datePublished":"2016-01-15T11:01:17+00:00","dateModified":"2024-08-13T12:37:38+00:00","mainEntityOfPage":{"@id":"https:\/\/webkul.com\/blog\/how-to-create-a-new-database-table-in-magento-2-0\/"},"wordCount":270,"commentCount":0,"publisher":{"@id":"https:\/\/webkul.com\/blog\/#organization"},"image":{"@id":"https:\/\/webkul.com\/blog\/how-to-create-a-new-database-table-in-magento-2-0\/#primaryimage"},"thumbnailUrl":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2016\/01\/Magneto-Code-Snippet-3.png","keywords":["Adobe Commerce","Create Table","Database Table","InstallSchema","Magento 2"],"articleSection":["Magento2"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/webkul.com\/blog\/how-to-create-a-new-database-table-in-magento-2-0\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/webkul.com\/blog\/how-to-create-a-new-database-table-in-magento-2-0\/","url":"https:\/\/webkul.com\/blog\/how-to-create-a-new-database-table-in-magento-2-0\/","name":"New Database Table using InstallSchema in Adobe Commerce","isPartOf":{"@id":"https:\/\/webkul.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/webkul.com\/blog\/how-to-create-a-new-database-table-in-magento-2-0\/#primaryimage"},"image":{"@id":"https:\/\/webkul.com\/blog\/how-to-create-a-new-database-table-in-magento-2-0\/#primaryimage"},"thumbnailUrl":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2016\/01\/Magneto-Code-Snippet-3.png","datePublished":"2016-01-15T11:01:17+00:00","dateModified":"2024-08-13T12:37:38+00:00","description":"In Adobe Commerce 2.3.x and later versions, Adobe Commerce also provided the functionality to create a new table using Declarative Schema.","breadcrumb":{"@id":"https:\/\/webkul.com\/blog\/how-to-create-a-new-database-table-in-magento-2-0\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/webkul.com\/blog\/how-to-create-a-new-database-table-in-magento-2-0\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/webkul.com\/blog\/how-to-create-a-new-database-table-in-magento-2-0\/#primaryimage","url":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2016\/01\/Magneto-Code-Snippet-3.png","contentUrl":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2016\/01\/Magneto-Code-Snippet-3.png","width":825,"height":260},{"@type":"BreadcrumbList","@id":"https:\/\/webkul.com\/blog\/how-to-create-a-new-database-table-in-magento-2-0\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/webkul.com\/blog\/"},{"@type":"ListItem","position":2,"name":"How to create a new database table using InstallSchema in Adobe Commerce (Magento 2)."}]},{"@type":"WebSite","@id":"https:\/\/webkul.com\/blog\/#website","url":"https:\/\/webkul.com\/blog\/","name":"Webkul Blog","description":"","publisher":{"@id":"https:\/\/webkul.com\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/webkul.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/webkul.com\/blog\/#organization","name":"WebKul Software Private Limited","url":"https:\/\/webkul.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/webkul.com\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2021\/08\/webkul-logo-accent-sq.png","contentUrl":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2021\/08\/webkul-logo-accent-sq.png","width":380,"height":380,"caption":"WebKul Software Private Limited"},"image":{"@id":"https:\/\/webkul.com\/blog\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/webkul\/","https:\/\/x.com\/webkul","https:\/\/www.instagram.com\/webkul\/","https:\/\/www.linkedin.com\/company\/webkul","https:\/\/www.youtube.com\/user\/webkul\/"]},{"@type":"Person","@id":"https:\/\/webkul.com\/blog\/#\/schema\/person\/573e459f54796eb4195511990de4bfd0","name":"Abhishek Singh","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/webkul.com\/blog\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/d4ac7e0e671bf743359d7e3f140c262d1b16d71106f0a1aeaecca327a2805ae4?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Fmike.png&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/d4ac7e0e671bf743359d7e3f140c262d1b16d71106f0a1aeaecca327a2805ae4?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Fmike.png&r=g","caption":"Abhishek Singh"},"description":"Adobe Commerce certified Magento developer with over 12 years of experience at Webkul. Passionate about scalable Magento 2-based webshops, AI, and multi-channel integrations, Abhishek consistently delivers innovative and efficient e-commerce solutions that propel businesses forward.","sameAs":["http:\/\/webkul.com"],"url":"https:\/\/webkul.com\/blog\/author\/abhishek\/"}]}},"amp_enabled":true,"_links":{"self":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/39669","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/users\/4"}],"replies":[{"embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/comments?post=39669"}],"version-history":[{"count":16,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/39669\/revisions"}],"predecessor-version":[{"id":457555,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/39669\/revisions\/457555"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/media\/39671"}],"wp:attachment":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/media?parent=39669"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/categories?post=39669"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/tags?post=39669"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}