{"id":1236,"date":"2024-09-27T13:16:46","date_gmt":"2024-09-27T13:16:46","guid":{"rendered":"https:\/\/www.devopsconsulting.in\/blog\/?p=1236"},"modified":"2024-09-27T13:18:12","modified_gmt":"2024-09-27T13:18:12","slug":"how-to-add-a-new-column-to-an-existing-table-in-laravel-10-without-losing-data","status":"publish","type":"post","link":"https:\/\/www.devopsconsulting.in\/blog\/how-to-add-a-new-column-to-an-existing-table-in-laravel-10-without-losing-data\/","title":{"rendered":"How to Add a New Column to an Existing Table in Laravel 10 Without Losing Data"},"content":{"rendered":"\n<figure class=\"wp-block-image size-full\"><img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"1024\" src=\"https:\/\/www.devopsconsulting.in\/blog\/wp-content\/uploads\/2024\/09\/process-of-adding-a-new-column-to-an-existing-table-in-Laravel-10-.webp\" alt=\"\" class=\"wp-image-1237\" srcset=\"https:\/\/www.devopsconsulting.in\/blog\/wp-content\/uploads\/2024\/09\/process-of-adding-a-new-column-to-an-existing-table-in-Laravel-10-.webp 1024w, https:\/\/www.devopsconsulting.in\/blog\/wp-content\/uploads\/2024\/09\/process-of-adding-a-new-column-to-an-existing-table-in-Laravel-10--300x300.webp 300w, https:\/\/www.devopsconsulting.in\/blog\/wp-content\/uploads\/2024\/09\/process-of-adding-a-new-column-to-an-existing-table-in-Laravel-10--150x150.webp 150w, https:\/\/www.devopsconsulting.in\/blog\/wp-content\/uploads\/2024\/09\/process-of-adding-a-new-column-to-an-existing-table-in-Laravel-10--768x768.webp 768w\" sizes=\"auto, (max-width: 1024px) 100vw, 1024px\" \/><\/figure>\n\n\n\n<p><em>Add Column to Laravel Table Without Losing Data<\/em><\/p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Introduction<\/strong><\/h2>\n\n\n\n<p>In this tutorial, we\u2019ll guide you through the process of adding a new column to an existing table in Laravel 10 without losing any data. Whether you&#8217;re working with a table that\u2019s already in use or one that&#8217;s newly created, Laravel provides an easy way to update your database schema seamlessly. This guide will focus on adding a <code>Qrcode<\/code> column to a <code>users<\/code> table, but the process applies to any table or column.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>If You Haven&#8217;t Migrated Yet<\/strong><\/h3>\n\n\n\n<p>If you have not yet migrated your database, you can include the new column directly in your migration file. Simply run:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>php artisan migrate<\/code><\/pre>\n\n\n\n<p>This will create your table with all the columns specified, including the <code>Qrcode<\/code> column.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>If You&#8217;ve Already Migrated Without the New Column<\/strong><\/h3>\n\n\n\n<p>If you&#8217;ve already created and migrated your <code>users<\/code> table but now need to add the <code>Qrcode<\/code> column without losing data, follow these steps:<\/p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Step 1: Create a New Migration for Adding the Column<\/strong><\/h3>\n\n\n\n<p>Run the following Artisan command to create a new migration file for adding the <code>Qrcode<\/code> column:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>php artisan make:migration add_qrcode_column_to_users_table --table=users<\/code><\/pre>\n\n\n\n<ul class=\"wp-block-list\">\n<li>This command generates a new migration file to modify the existing <code>users<\/code> table.<\/li>\n<\/ul>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Step 2: Update the New Migration File<\/strong><\/h3>\n\n\n\n<p>Next, open the newly created migration file in the <code>database\/migrations<\/code> directory and update it with the following code:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>use Illuminate\\Database\\Migrations\\Migration;\nuse Illuminate\\Database\\Schema\\Blueprint;\nuse Illuminate\\Support\\Facades\\Schema;\n\nclass AddQrcodeColumnToUsersTable extends Migration\n{\n    \/**\n     * Run the migrations.\n     *\/\n    public function up(): void\n    {\n        Schema::table('users', function (Blueprint $table) {\n            $table-&gt;string('Qrcode')-&gt;nullable()-&gt;after('driving_lic');\n        });\n    }\n\n    \/**\n     * Reverse the migrations.\n     *\/\n    public function down(): void\n    {\n        Schema::table('users', function (Blueprint $table) {\n            $table-&gt;dropColumn('Qrcode');\n        });\n    }\n}<\/code><\/pre>\n\n\n\n<p><strong>Explanation:<\/strong><\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>The <code>up<\/code> method adds the <code>Qrcode<\/code> column to the <code>users<\/code> table.<\/li>\n\n\n\n<li>The <code>down<\/code> method handles rolling back the migration by removing the <code>Qrcode<\/code> column if you ever need to revert this change.<\/li>\n\n\n\n<li>The <code>->nullable()<\/code> method ensures that this column can store <code>null<\/code> values initially, avoiding potential issues with existing data.<\/li>\n<\/ul>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Step 3: Run the Migration<\/strong><\/h3>\n\n\n\n<p>Finally, apply the migration using the following command:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>php artisan migrate<\/code><\/pre>\n\n\n\n<p>This command updates your <code>users<\/code> table, adding the <code>Qrcode<\/code> column without affecting existing data.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Why This Method Works<\/strong><\/h3>\n\n\n\n<p>Laravel&#8217;s migration system allows developers to modify database tables incrementally, which means you can add columns without altering or losing existing data. This approach is ideal for projects where data integrity is crucial.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Verifying the Change<\/strong><\/h3>\n\n\n\n<p>After running the migration, check your database using a database management tool (e.g., phpMyAdmin, MySQL Workbench) to confirm that the <code>Qrcode<\/code> column has been added successfully.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Additional Tips<\/strong><\/h3>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Backing Up Data:<\/strong> Always back up your database before running migrations, especially in a production environment.<\/li>\n\n\n\n<li><strong>Testing:<\/strong> Run migrations on a local or staging environment first to ensure they work correctly.<\/li>\n<\/ul>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Conclusion<\/strong><\/h3>\n\n\n\n<p>Adding a new column to an existing table in Laravel 10 is a straightforward process that ensures data integrity. By following this guide, you can easily extend your database schema without worrying about data loss.<\/p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n","protected":false},"excerpt":{"rendered":"<p>Add Column to Laravel Table Without Losing Data Introduction In this tutorial, we\u2019ll guide you through the process of adding a new column to an existing table&#8230; <\/p>\n","protected":false},"author":2,"featured_media":1237,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[87],"tags":[409,411,408,410,412],"class_list":["post-1236","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-laravel","tag-add-column-to-laravel-table-without-losing-data","tag-adding-new-column-to-existing-table-in-laravel","tag-laravel-10-migration-add-column","tag-laravel-database-migration","tag-laravel-migration-tutorial"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.4 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>How to Add a New Column to an Existing Table in Laravel 10 Without Losing Data - DevOps Consulting<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.devopsconsulting.in\/blog\/how-to-add-a-new-column-to-an-existing-table-in-laravel-10-without-losing-data\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to Add a New Column to an Existing Table in Laravel 10 Without Losing Data - DevOps Consulting\" \/>\n<meta property=\"og:description\" content=\"Add Column to Laravel Table Without Losing Data Introduction In this tutorial, we\u2019ll guide you through the process of adding a new column to an existing table...\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.devopsconsulting.in\/blog\/how-to-add-a-new-column-to-an-existing-table-in-laravel-10-without-losing-data\/\" \/>\n<meta property=\"og:site_name\" content=\"DevOps Consulting\" \/>\n<meta property=\"article:published_time\" content=\"2024-09-27T13:16:46+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-09-27T13:18:12+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.devopsconsulting.in\/blog\/wp-content\/uploads\/2024\/09\/process-of-adding-a-new-column-to-an-existing-table-in-Laravel-10-.webp\" \/>\n\t<meta property=\"og:image:width\" content=\"1024\" \/>\n\t<meta property=\"og:image:height\" content=\"1024\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/webp\" \/>\n<meta name=\"author\" content=\"Abhishek Singh\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\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=\"3 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/www.devopsconsulting.in\\\/blog\\\/how-to-add-a-new-column-to-an-existing-table-in-laravel-10-without-losing-data\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.devopsconsulting.in\\\/blog\\\/how-to-add-a-new-column-to-an-existing-table-in-laravel-10-without-losing-data\\\/\"},\"author\":{\"name\":\"Abhishek Singh\",\"@id\":\"https:\\\/\\\/www.devopsconsulting.in\\\/blog\\\/#\\\/schema\\\/person\\\/fc397ba8be42f9fdd53450edfc73006f\"},\"headline\":\"How to Add a New Column to an Existing Table in Laravel 10 Without Losing Data\",\"datePublished\":\"2024-09-27T13:16:46+00:00\",\"dateModified\":\"2024-09-27T13:18:12+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.devopsconsulting.in\\\/blog\\\/how-to-add-a-new-column-to-an-existing-table-in-laravel-10-without-losing-data\\\/\"},\"wordCount\":431,\"commentCount\":0,\"image\":{\"@id\":\"https:\\\/\\\/www.devopsconsulting.in\\\/blog\\\/how-to-add-a-new-column-to-an-existing-table-in-laravel-10-without-losing-data\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.devopsconsulting.in\\\/blog\\\/wp-content\\\/uploads\\\/2024\\\/09\\\/process-of-adding-a-new-column-to-an-existing-table-in-Laravel-10-.webp\",\"keywords\":[\"Add Column to Laravel Table Without Losing Data\",\"Adding New Column to Existing Table in Laravel\",\"Laravel 10 Migration Add Column\",\"Laravel Database Migration\",\"Laravel Migration Tutorial\"],\"articleSection\":[\"Laravel\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/www.devopsconsulting.in\\\/blog\\\/how-to-add-a-new-column-to-an-existing-table-in-laravel-10-without-losing-data\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.devopsconsulting.in\\\/blog\\\/how-to-add-a-new-column-to-an-existing-table-in-laravel-10-without-losing-data\\\/\",\"url\":\"https:\\\/\\\/www.devopsconsulting.in\\\/blog\\\/how-to-add-a-new-column-to-an-existing-table-in-laravel-10-without-losing-data\\\/\",\"name\":\"How to Add a New Column to an Existing Table in Laravel 10 Without Losing Data - DevOps Consulting\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.devopsconsulting.in\\\/blog\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/www.devopsconsulting.in\\\/blog\\\/how-to-add-a-new-column-to-an-existing-table-in-laravel-10-without-losing-data\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/www.devopsconsulting.in\\\/blog\\\/how-to-add-a-new-column-to-an-existing-table-in-laravel-10-without-losing-data\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.devopsconsulting.in\\\/blog\\\/wp-content\\\/uploads\\\/2024\\\/09\\\/process-of-adding-a-new-column-to-an-existing-table-in-Laravel-10-.webp\",\"datePublished\":\"2024-09-27T13:16:46+00:00\",\"dateModified\":\"2024-09-27T13:18:12+00:00\",\"author\":{\"@id\":\"https:\\\/\\\/www.devopsconsulting.in\\\/blog\\\/#\\\/schema\\\/person\\\/fc397ba8be42f9fdd53450edfc73006f\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.devopsconsulting.in\\\/blog\\\/how-to-add-a-new-column-to-an-existing-table-in-laravel-10-without-losing-data\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.devopsconsulting.in\\\/blog\\\/how-to-add-a-new-column-to-an-existing-table-in-laravel-10-without-losing-data\\\/#primaryimage\",\"url\":\"https:\\\/\\\/www.devopsconsulting.in\\\/blog\\\/wp-content\\\/uploads\\\/2024\\\/09\\\/process-of-adding-a-new-column-to-an-existing-table-in-Laravel-10-.webp\",\"contentUrl\":\"https:\\\/\\\/www.devopsconsulting.in\\\/blog\\\/wp-content\\\/uploads\\\/2024\\\/09\\\/process-of-adding-a-new-column-to-an-existing-table-in-Laravel-10-.webp\",\"width\":1024,\"height\":1024},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.devopsconsulting.in\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/www.devopsconsulting.in\\\/blog\\\/\",\"name\":\"DevOps Consulting\",\"description\":\"DevOps Consulting | SRE Consulting | DevSecOps Consulting | MLOps Consulting\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/www.devopsconsulting.in\\\/blog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.devopsconsulting.in\\\/blog\\\/#\\\/schema\\\/person\\\/fc397ba8be42f9fdd53450edfc73006f\",\"name\":\"Abhishek Singh\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/790feefe779852cdf344ca7318bf6c13832223c9b3c6bf4d217658412041026d?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/790feefe779852cdf344ca7318bf6c13832223c9b3c6bf4d217658412041026d?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/790feefe779852cdf344ca7318bf6c13832223c9b3c6bf4d217658412041026d?s=96&d=mm&r=g\",\"caption\":\"Abhishek Singh\"},\"description\":\"I\u2019m Abhishek, a DevOps, SRE, DevSecOps, and Cloud expert with a passion for sharing knowledge and real-world experiences. I\u2019ve had the opportunity to work with Cotocus and continue to contribute to multiple platforms where I share insights across different domains: \u2022 DevOps School \u2013 Tech blogs and tutorials \u2022 Holiday Landmark \u2013 Travel stories and guides \u2022 Stocks Mantra \u2013 Stock market strategies and tips \u2022 My Medic Plus \u2013 Health and fitness guidance \u2022 TrueReviewNow \u2013 Honest product reviews \u2022 Wizbrand \u2013 SEO and digital tools for businesses I\u2019m also exploring the fascinating world of Quantum Computing.\",\"url\":\"https:\\\/\\\/www.devopsconsulting.in\\\/blog\\\/author\\\/abhishek\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How to Add a New Column to an Existing Table in Laravel 10 Without Losing Data - DevOps Consulting","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:\/\/www.devopsconsulting.in\/blog\/how-to-add-a-new-column-to-an-existing-table-in-laravel-10-without-losing-data\/","og_locale":"en_US","og_type":"article","og_title":"How to Add a New Column to an Existing Table in Laravel 10 Without Losing Data - DevOps Consulting","og_description":"Add Column to Laravel Table Without Losing Data Introduction In this tutorial, we\u2019ll guide you through the process of adding a new column to an existing table...","og_url":"https:\/\/www.devopsconsulting.in\/blog\/how-to-add-a-new-column-to-an-existing-table-in-laravel-10-without-losing-data\/","og_site_name":"DevOps Consulting","article_published_time":"2024-09-27T13:16:46+00:00","article_modified_time":"2024-09-27T13:18:12+00:00","og_image":[{"width":1024,"height":1024,"url":"https:\/\/www.devopsconsulting.in\/blog\/wp-content\/uploads\/2024\/09\/process-of-adding-a-new-column-to-an-existing-table-in-Laravel-10-.webp","type":"image\/webp"}],"author":"Abhishek Singh","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Abhishek Singh","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.devopsconsulting.in\/blog\/how-to-add-a-new-column-to-an-existing-table-in-laravel-10-without-losing-data\/#article","isPartOf":{"@id":"https:\/\/www.devopsconsulting.in\/blog\/how-to-add-a-new-column-to-an-existing-table-in-laravel-10-without-losing-data\/"},"author":{"name":"Abhishek Singh","@id":"https:\/\/www.devopsconsulting.in\/blog\/#\/schema\/person\/fc397ba8be42f9fdd53450edfc73006f"},"headline":"How to Add a New Column to an Existing Table in Laravel 10 Without Losing Data","datePublished":"2024-09-27T13:16:46+00:00","dateModified":"2024-09-27T13:18:12+00:00","mainEntityOfPage":{"@id":"https:\/\/www.devopsconsulting.in\/blog\/how-to-add-a-new-column-to-an-existing-table-in-laravel-10-without-losing-data\/"},"wordCount":431,"commentCount":0,"image":{"@id":"https:\/\/www.devopsconsulting.in\/blog\/how-to-add-a-new-column-to-an-existing-table-in-laravel-10-without-losing-data\/#primaryimage"},"thumbnailUrl":"https:\/\/www.devopsconsulting.in\/blog\/wp-content\/uploads\/2024\/09\/process-of-adding-a-new-column-to-an-existing-table-in-Laravel-10-.webp","keywords":["Add Column to Laravel Table Without Losing Data","Adding New Column to Existing Table in Laravel","Laravel 10 Migration Add Column","Laravel Database Migration","Laravel Migration Tutorial"],"articleSection":["Laravel"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.devopsconsulting.in\/blog\/how-to-add-a-new-column-to-an-existing-table-in-laravel-10-without-losing-data\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.devopsconsulting.in\/blog\/how-to-add-a-new-column-to-an-existing-table-in-laravel-10-without-losing-data\/","url":"https:\/\/www.devopsconsulting.in\/blog\/how-to-add-a-new-column-to-an-existing-table-in-laravel-10-without-losing-data\/","name":"How to Add a New Column to an Existing Table in Laravel 10 Without Losing Data - DevOps Consulting","isPartOf":{"@id":"https:\/\/www.devopsconsulting.in\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.devopsconsulting.in\/blog\/how-to-add-a-new-column-to-an-existing-table-in-laravel-10-without-losing-data\/#primaryimage"},"image":{"@id":"https:\/\/www.devopsconsulting.in\/blog\/how-to-add-a-new-column-to-an-existing-table-in-laravel-10-without-losing-data\/#primaryimage"},"thumbnailUrl":"https:\/\/www.devopsconsulting.in\/blog\/wp-content\/uploads\/2024\/09\/process-of-adding-a-new-column-to-an-existing-table-in-Laravel-10-.webp","datePublished":"2024-09-27T13:16:46+00:00","dateModified":"2024-09-27T13:18:12+00:00","author":{"@id":"https:\/\/www.devopsconsulting.in\/blog\/#\/schema\/person\/fc397ba8be42f9fdd53450edfc73006f"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.devopsconsulting.in\/blog\/how-to-add-a-new-column-to-an-existing-table-in-laravel-10-without-losing-data\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.devopsconsulting.in\/blog\/how-to-add-a-new-column-to-an-existing-table-in-laravel-10-without-losing-data\/#primaryimage","url":"https:\/\/www.devopsconsulting.in\/blog\/wp-content\/uploads\/2024\/09\/process-of-adding-a-new-column-to-an-existing-table-in-Laravel-10-.webp","contentUrl":"https:\/\/www.devopsconsulting.in\/blog\/wp-content\/uploads\/2024\/09\/process-of-adding-a-new-column-to-an-existing-table-in-Laravel-10-.webp","width":1024,"height":1024},{"@type":"WebSite","@id":"https:\/\/www.devopsconsulting.in\/blog\/#website","url":"https:\/\/www.devopsconsulting.in\/blog\/","name":"DevOps Consulting","description":"DevOps Consulting | SRE Consulting | DevSecOps Consulting | MLOps Consulting","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.devopsconsulting.in\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/www.devopsconsulting.in\/blog\/#\/schema\/person\/fc397ba8be42f9fdd53450edfc73006f","name":"Abhishek Singh","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/790feefe779852cdf344ca7318bf6c13832223c9b3c6bf4d217658412041026d?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/790feefe779852cdf344ca7318bf6c13832223c9b3c6bf4d217658412041026d?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/790feefe779852cdf344ca7318bf6c13832223c9b3c6bf4d217658412041026d?s=96&d=mm&r=g","caption":"Abhishek Singh"},"description":"I\u2019m Abhishek, a DevOps, SRE, DevSecOps, and Cloud expert with a passion for sharing knowledge and real-world experiences. I\u2019ve had the opportunity to work with Cotocus and continue to contribute to multiple platforms where I share insights across different domains: \u2022 DevOps School \u2013 Tech blogs and tutorials \u2022 Holiday Landmark \u2013 Travel stories and guides \u2022 Stocks Mantra \u2013 Stock market strategies and tips \u2022 My Medic Plus \u2013 Health and fitness guidance \u2022 TrueReviewNow \u2013 Honest product reviews \u2022 Wizbrand \u2013 SEO and digital tools for businesses I\u2019m also exploring the fascinating world of Quantum Computing.","url":"https:\/\/www.devopsconsulting.in\/blog\/author\/abhishek\/"}]}},"_links":{"self":[{"href":"https:\/\/www.devopsconsulting.in\/blog\/wp-json\/wp\/v2\/posts\/1236","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.devopsconsulting.in\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.devopsconsulting.in\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.devopsconsulting.in\/blog\/wp-json\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/www.devopsconsulting.in\/blog\/wp-json\/wp\/v2\/comments?post=1236"}],"version-history":[{"count":1,"href":"https:\/\/www.devopsconsulting.in\/blog\/wp-json\/wp\/v2\/posts\/1236\/revisions"}],"predecessor-version":[{"id":1238,"href":"https:\/\/www.devopsconsulting.in\/blog\/wp-json\/wp\/v2\/posts\/1236\/revisions\/1238"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.devopsconsulting.in\/blog\/wp-json\/wp\/v2\/media\/1237"}],"wp:attachment":[{"href":"https:\/\/www.devopsconsulting.in\/blog\/wp-json\/wp\/v2\/media?parent=1236"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.devopsconsulting.in\/blog\/wp-json\/wp\/v2\/categories?post=1236"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.devopsconsulting.in\/blog\/wp-json\/wp\/v2\/tags?post=1236"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}