{"id":3093,"date":"2021-07-12T11:46:48","date_gmt":"2021-07-12T11:46:48","guid":{"rendered":"https:\/\/www.skynetindia.info\/blog\/?p=3093"},"modified":"2022-03-08T07:33:34","modified_gmt":"2022-03-08T07:33:34","slug":"heres-the-laravel-migration-guide-youve-been-looking-for","status":"publish","type":"post","link":"https:\/\/www.skynetindia.info\/blog\/heres-the-laravel-migration-guide-youve-been-looking-for\/","title":{"rendered":"Here&#8217;s the Laravel Migration Guide You&#8217;ve Been Looking for!"},"content":{"rendered":"<p>Laravel migration may look like one complicated subject but worry not; this guide will help you understand it from the basics.<\/p>\n<h2>What is Laravel Migration?<\/h2>\n<p>Laravel Migration is a process that enables you to build a table in a database without generally writing or modifying the SQL queries. It allows you to roll back changes, make incremental changes or sync the database structure simultaneously when multiple teams work on the same application. <\/p>\n<p>To simple understand, it is a quick method to create, destroy or bootstrap any application database. There originates no need to run a SQL query or log into the database console.<\/p>\n<h2>What is the point of Laravel Migration when you can directly create a table?<\/h2>\n<p>While working as a team, if one needs to execute some alteration in the table, pursuing the traditional method can be hectic.<\/p>\n<p>While working traditionally, SQL query needs to be passed to the team member who will have the responsibility to import the file. In a situation, if they forget to do so, the application won\u2019t work accurately.<\/p>\n<p>To cater to such more problems, Laravel Migrations came as a saviour. It helps you get rid of any team collaboration issues in concern with databases.<\/p>\n<p>By utilizing the Laravel migrations, you can add new columns, delete records, and more without deleting records in your database. Rest assured of the already existing migrations, as Laravel will only do migrations that are newly added based on your request. You do not have to worry about previous migrations because Laravel has a track on the migrations already executed in the database.<\/p>\n<h2>How to get started?<\/h2>\n<p>Let\u2019s understand it with a simple task. We will perform a database migration where we will create a table to save the application links.<\/p>\n<p>To do so, we will be utilizing the artisan tool that is available in artisan by default.<\/p>\n<p><b>Step 1:<\/b> We will start with the Application\u2019s root directory. Make sure that your Docker composes development environment should be up and running.<\/p>\n<p><b>Step 2:<\/b> Next, to set up the links table, you need to create a database migration.<\/p>\n<p>To create the same, run the make:migration Artisan command, which will bootstrap a new class in the database\/migrations folder on your Laravel application. A default boilerplate code will be present in the class by default.<\/p>\n<p style=\"background: #f2f2f2;   padding: 14px;   border: 1px solid #ddd;\">php artisan make:migration create_flights_table<\/p>\n<p><b>Remember: <\/b><\/p>\n<p>Don\u2019t forget to use the docker-compose exec app. It is used to run the command where PHP is installed on the app service container.<\/p>\n<p>The migration that is generated is based on the current date and time.<\/p>\n<p>Even the name provided make:migration command will be an argument.<\/p>\n<p><b>Step 3:<\/b> utilizing the editor of choice, open the generated migration class.<\/p>\n<p>Further, to include the table columns in order to store the table data, you need to update the up method.<\/p>\n<p><b>Step 4:<\/b> The next step includes the replacement of the current data. To do the same, the following codes needed to be worked on. Three new fields in the table will be added.<\/p>\n<ul style=\"list-style-type: disc; padding-left: 35px; margin-bottom: 1.5rem;\">\n<li><u>URL<\/u>: It is required to save the link URL.<\/li>\n<li><u>Description<\/u>: To save the link description, this text field needs to be filled in.<\/li>\n<li><u>Enabled<\/u>: whether enabled or not, this field needs to be filled in to store the state of the link. A value of 0 or 1 will be stored to the tinyint unsigned field by the boolean Schema type.<\/li>\n<\/ul>\n<pre data-lang='scss' class='prettyprint' style=\"background: #f2f2f2;   padding: 14px;   border: 1px solid #ddd; margin-bottom:18px;\">&lt;AMP-analytics type = \u201cgoogleanalytics\u201d id = \u201canalytics1\u201d&gt;\r\n  &lt;?php\r\n\r\nuse Illuminate\\Database\\Migrations\\Migration;\r\nuse Illuminate\\Database\\Schema\\Blueprint;\r\nuse Illuminate\\Support\\Facades\\Schema;\r\n\r\nclass CreateFlightsTable extends Migration\r\n{\r\n    \/**\r\n     * Run the migrations.\r\n     *\r\n     * @return void\r\n     *\/\r\n    public function up()\r\n    {\r\n        Schema::create('flights', function (Blueprint $table) {\r\n            $table-&gt;id();\r\n            $table-&gt;string('name');\r\n            $table-&gt;string('airline');\r\n            $table-&gt;timestamps();\r\n        });\r\n    }\r\n\r\n    \/**\r\n     * Reverse the migrations.\r\n     *\r\n     * @return void\r\n     *\/\r\n    public function down()\r\n    {\r\n        Schema::drop('flights');\r\n    }\r\n}\r\n\r\n<\/pre>\n<p><b>Step 5<\/b>: Save the migration file after all these entries.<\/p>\n<p><b>Step 6<\/b>: Next step includes running the migration file.<\/p>\n<p>Use the code, \u201cdocker-compose exec app PHP artisan migrate.\u201d<\/p>\n<p>You can also get a glance at the other migrations that were executed in the same table in the database\/migrations in the app\u2019s root folder.<\/p>\n<p>It is the most basic procedure on how you can create a table using migrations. Hope you will be able to do a much better job with this step-by-step guide.<\/p>\n<p>Furthermore, to help you learn more about the Laravel migration, we have listed some Laravel commands that will prove to be extremely useful to you.<\/p>\n<ul style=\"list-style-type: disc; padding-left: 35px; margin-bottom: 1.5rem;\">\n<li>\n<p><b>migrate:fresh<\/b><br \/>\nUsing this command, one can drop all the tables from the database and re-run all the migrations.<\/br><br \/>\nSyntax used: php artisan migrate:fresh<\/li>\n<li>\n<p><b>migrate:install<\/b><br \/>\nUsing this command, a migration table can be created in a database.<\/br><br \/>\nSyntax used: php artisan migrate:install<\/p>\n<\/li>\n<li>\n<p><b>migrate:refresh<\/b><br \/>\nUsing this command, all the migrations can be rolled back, and migrations can be re-run.<br \/>\nIn simple words, the database can be re-created entirely.<\/br><br \/>\nSyntax used: php artisan migrate:refresh<\/p>\n<\/li>\n<li>\n<p><b>migrate:reset<\/b><br \/>\nIt solely drops all the tables that you have created in a database,<\/br><br \/>\nSyntax used: php artisan migrate:reset<\/p>\n<\/li>\n<li>\n<p><b>migrate:rollback<\/b><br \/>\nThis laravel command is used to drop the last database migration.<\/br><br \/>\nSyntax used: php artisan migrate: rollback<\/p>\n<\/li>\n<li>\n<p><b>migrate:status<\/b><br \/>\nThis command helps you check the migration status.<\/br><br \/>\nSyntax used: php artisan migrate: status<\/p>\n<\/li>\n<\/ul>\n<p><b>Get started!<\/b><br \/>\nLaravel will ease the burden off your shoulders with its great framework. You can bid goodbye to an array of mundane tasks and can take advantage of several other features using laravel that will get your work done within seconds.<\/p>\n<p>So, there stands no reason why you should not be using laravel. Be confident as you take the help of this step-by-step guide and start your laravel migration journey today!<\/p>\n<p>We provide all-in-one <a href=\"https:\/\/www.skynetindia.info\/laravel-web-development.html\">Laravel Development services<\/a> starting from Website, Web Application, Web Services, Backend, RESTful API, ERP (Enterprise Resource Planning), CRM (Customer Relationship Management), SaaS (Software as a Service) and Cloud-based software based on your business needs. Skynet Technologies has expertise in developing feature-rich, robust, and customized Laravel website and web application based on your business requirements. We offer full suite of <a href=\"https:\/\/www.skynetindia.info\/laravel-cakephp-website-maintenance.html\">Laravel Maintenance Services<\/a> starting from website content updates, website speed optimization, SSL installation, Source Code Audit, Security Patches Updates, Bug Fixing and Troubleshooting, Broken Link Resolution, Third Party Integration, Migration or Version Upgrades.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Laravel migration may look like one complicated subject but worry not; this guide will help you understand it from the basics. What is Laravel Migration? Laravel Migration is a process that enables you to build a table in a database without generally writing or modifying the SQL queries. It allows you to roll back changes, [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":3094,"comment_status":"closed","ping_status":"open","sticky":false,"template":"","format":"standard","meta":[],"categories":[154],"tags":[2373,2374,115,1222,2371,2376,2372,2375,1680,2363,155,156,185,1679],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v17.6 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<meta name=\"description\" content=\"Looking to migrate your Laravel website? Explore the complete Laravel Migration Guide to migrate your Laravel website or application without any hassles.\" \/>\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.skynetindia.info\/blog\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Laravel Migration guide \u2013 Skynet Technologies\" \/>\n<meta property=\"og:description\" content=\"Looking to migrate your Laravel website? Explore the complete Laravel Migration Guide to migrate your Laravel website or application without any hassles.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.skynetindia.info\/blog\/heres-the-laravel-migration-guide-youve-been-looking-for\/\" \/>\n<meta property=\"og:site_name\" content=\"Web design and Development Blog\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/Websitedesignworldwide\" \/>\n<meta property=\"article:published_time\" content=\"2021-07-12T11:46:48+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2022-03-08T07:33:34+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.skynetindia.info\/blog\/wp-content\/uploads\/2021\/07\/laravel-migration.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"1200\" \/>\n\t<meta property=\"og:image:height\" content=\"900\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Web Development India\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"5 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Organization\",\"@id\":\"https:\/\/www.skynetindia.info\/blog\/#organization\",\"name\":\"Skynet Technologies\",\"url\":\"https:\/\/www.skynetindia.info\/blog\/\",\"sameAs\":[\"https:\/\/www.facebook.com\/Websitedesignworldwide\",\"https:\/\/in.pinterest.com\/Skynet_India\/\",\"https:\/\/twitter.com\/skynetindia\"],\"logo\":{\"@type\":\"ImageObject\",\"@id\":\"https:\/\/www.skynetindia.info\/blog\/#logo\",\"inLanguage\":\"en-US\",\"url\":\"https:\/\/www.skynetindia.info\/blog\/wp-content\/uploads\/2020\/06\/skynet-technologies-logo.png\",\"contentUrl\":\"https:\/\/www.skynetindia.info\/blog\/wp-content\/uploads\/2020\/06\/skynet-technologies-logo.png\",\"width\":597,\"height\":99,\"caption\":\"Skynet Technologies\"},\"image\":{\"@id\":\"https:\/\/www.skynetindia.info\/blog\/#logo\"}},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.skynetindia.info\/blog\/#website\",\"url\":\"https:\/\/www.skynetindia.info\/blog\/\",\"name\":\"Web design and Development Blog\",\"description\":\"Skynet Technologies\",\"publisher\":{\"@id\":\"https:\/\/www.skynetindia.info\/blog\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.skynetindia.info\/blog\/?s={search_term_string}\"},\"query-input\":\"required name=search_term_string\"}],\"inLanguage\":\"en-US\"},{\"@type\":\"ImageObject\",\"@id\":\"https:\/\/www.skynetindia.info\/blog\/heres-the-laravel-migration-guide-youve-been-looking-for\/#primaryimage\",\"inLanguage\":\"en-US\",\"url\":\"https:\/\/www.skynetindia.info\/blog\/wp-content\/uploads\/2021\/07\/laravel-migration.jpg\",\"contentUrl\":\"https:\/\/www.skynetindia.info\/blog\/wp-content\/uploads\/2021\/07\/laravel-migration.jpg\",\"width\":1200,\"height\":900,\"caption\":\"Laravel Migration\"},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.skynetindia.info\/blog\/heres-the-laravel-migration-guide-youve-been-looking-for\/#webpage\",\"url\":\"https:\/\/www.skynetindia.info\/blog\/heres-the-laravel-migration-guide-youve-been-looking-for\/\",\"name\":\"Laravel Migration guide \\u2013 Skynet Technologies\",\"isPartOf\":{\"@id\":\"https:\/\/www.skynetindia.info\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/www.skynetindia.info\/blog\/heres-the-laravel-migration-guide-youve-been-looking-for\/#primaryimage\"},\"datePublished\":\"2021-07-12T11:46:48+00:00\",\"dateModified\":\"2022-03-08T07:33:34+00:00\",\"description\":\"Looking to migrate your Laravel website? Explore the complete Laravel Migration Guide to migrate your Laravel website or application without any hassles.\",\"breadcrumb\":{\"@id\":\"https:\/\/www.skynetindia.info\/blog\/heres-the-laravel-migration-guide-youve-been-looking-for\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.skynetindia.info\/blog\/heres-the-laravel-migration-guide-youve-been-looking-for\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.skynetindia.info\/blog\/heres-the-laravel-migration-guide-youve-been-looking-for\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.skynetindia.info\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Here&#8217;s the Laravel Migration Guide You&#8217;ve Been Looking for!\"}]},{\"@type\":\"Article\",\"@id\":\"https:\/\/www.skynetindia.info\/blog\/heres-the-laravel-migration-guide-youve-been-looking-for\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.skynetindia.info\/blog\/heres-the-laravel-migration-guide-youve-been-looking-for\/#webpage\"},\"author\":{\"@id\":\"https:\/\/www.skynetindia.info\/blog\/#\/schema\/person\/975d7d2ac867146ebdde047dec6e7931\"},\"headline\":\"Here&#8217;s the Laravel Migration Guide You&#8217;ve Been Looking for!\",\"datePublished\":\"2021-07-12T11:46:48+00:00\",\"dateModified\":\"2022-03-08T07:33:34+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.skynetindia.info\/blog\/heres-the-laravel-migration-guide-youve-been-looking-for\/#webpage\"},\"wordCount\":982,\"publisher\":{\"@id\":\"https:\/\/www.skynetindia.info\/blog\/#organization\"},\"image\":{\"@id\":\"https:\/\/www.skynetindia.info\/blog\/heres-the-laravel-migration-guide-youve-been-looking-for\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.skynetindia.info\/blog\/wp-content\/uploads\/2021\/07\/laravel-migration.jpg\",\"keywords\":[\"Create Laravel Migration\",\"Laravel Database Migration\",\"laravel maintenance\",\"Laravel Maintenance Mode\",\"Laravel Migration\",\"Laravel Website Upgrades\",\"Migrate Laravel\",\"Migration Database Laravel\",\"Migration Services\",\"Upgrade Laravel\",\"website maintenance\",\"website maintenance service\",\"website maintenance services\",\"Website Migration Services\"],\"articleSection\":[\"Website Maintenance\"],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\/\/www.skynetindia.info\/blog\/#\/schema\/person\/975d7d2ac867146ebdde047dec6e7931\",\"name\":\"Web Development India\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"description":"Looking to migrate your Laravel website? Explore the complete Laravel Migration Guide to migrate your Laravel website or application without any hassles.","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.skynetindia.info\/blog\/","og_locale":"en_US","og_type":"article","og_title":"Laravel Migration guide \u2013 Skynet Technologies","og_description":"Looking to migrate your Laravel website? Explore the complete Laravel Migration Guide to migrate your Laravel website or application without any hassles.","og_url":"https:\/\/www.skynetindia.info\/blog\/heres-the-laravel-migration-guide-youve-been-looking-for\/","og_site_name":"Web design and Development Blog","article_publisher":"https:\/\/www.facebook.com\/Websitedesignworldwide","article_published_time":"2021-07-12T11:46:48+00:00","article_modified_time":"2022-03-08T07:33:34+00:00","og_image":[{"width":1200,"height":900,"url":"https:\/\/www.skynetindia.info\/blog\/wp-content\/uploads\/2021\/07\/laravel-migration.jpg","type":"image\/jpeg"}],"twitter_misc":{"Written by":"Web Development India","Est. reading time":"5 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Organization","@id":"https:\/\/www.skynetindia.info\/blog\/#organization","name":"Skynet Technologies","url":"https:\/\/www.skynetindia.info\/blog\/","sameAs":["https:\/\/www.facebook.com\/Websitedesignworldwide","https:\/\/in.pinterest.com\/Skynet_India\/","https:\/\/twitter.com\/skynetindia"],"logo":{"@type":"ImageObject","@id":"https:\/\/www.skynetindia.info\/blog\/#logo","inLanguage":"en-US","url":"https:\/\/www.skynetindia.info\/blog\/wp-content\/uploads\/2020\/06\/skynet-technologies-logo.png","contentUrl":"https:\/\/www.skynetindia.info\/blog\/wp-content\/uploads\/2020\/06\/skynet-technologies-logo.png","width":597,"height":99,"caption":"Skynet Technologies"},"image":{"@id":"https:\/\/www.skynetindia.info\/blog\/#logo"}},{"@type":"WebSite","@id":"https:\/\/www.skynetindia.info\/blog\/#website","url":"https:\/\/www.skynetindia.info\/blog\/","name":"Web design and Development Blog","description":"Skynet Technologies","publisher":{"@id":"https:\/\/www.skynetindia.info\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.skynetindia.info\/blog\/?s={search_term_string}"},"query-input":"required name=search_term_string"}],"inLanguage":"en-US"},{"@type":"ImageObject","@id":"https:\/\/www.skynetindia.info\/blog\/heres-the-laravel-migration-guide-youve-been-looking-for\/#primaryimage","inLanguage":"en-US","url":"https:\/\/www.skynetindia.info\/blog\/wp-content\/uploads\/2021\/07\/laravel-migration.jpg","contentUrl":"https:\/\/www.skynetindia.info\/blog\/wp-content\/uploads\/2021\/07\/laravel-migration.jpg","width":1200,"height":900,"caption":"Laravel Migration"},{"@type":"WebPage","@id":"https:\/\/www.skynetindia.info\/blog\/heres-the-laravel-migration-guide-youve-been-looking-for\/#webpage","url":"https:\/\/www.skynetindia.info\/blog\/heres-the-laravel-migration-guide-youve-been-looking-for\/","name":"Laravel Migration guide \u2013 Skynet Technologies","isPartOf":{"@id":"https:\/\/www.skynetindia.info\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.skynetindia.info\/blog\/heres-the-laravel-migration-guide-youve-been-looking-for\/#primaryimage"},"datePublished":"2021-07-12T11:46:48+00:00","dateModified":"2022-03-08T07:33:34+00:00","description":"Looking to migrate your Laravel website? Explore the complete Laravel Migration Guide to migrate your Laravel website or application without any hassles.","breadcrumb":{"@id":"https:\/\/www.skynetindia.info\/blog\/heres-the-laravel-migration-guide-youve-been-looking-for\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.skynetindia.info\/blog\/heres-the-laravel-migration-guide-youve-been-looking-for\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/www.skynetindia.info\/blog\/heres-the-laravel-migration-guide-youve-been-looking-for\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.skynetindia.info\/blog\/"},{"@type":"ListItem","position":2,"name":"Here&#8217;s the Laravel Migration Guide You&#8217;ve Been Looking for!"}]},{"@type":"Article","@id":"https:\/\/www.skynetindia.info\/blog\/heres-the-laravel-migration-guide-youve-been-looking-for\/#article","isPartOf":{"@id":"https:\/\/www.skynetindia.info\/blog\/heres-the-laravel-migration-guide-youve-been-looking-for\/#webpage"},"author":{"@id":"https:\/\/www.skynetindia.info\/blog\/#\/schema\/person\/975d7d2ac867146ebdde047dec6e7931"},"headline":"Here&#8217;s the Laravel Migration Guide You&#8217;ve Been Looking for!","datePublished":"2021-07-12T11:46:48+00:00","dateModified":"2022-03-08T07:33:34+00:00","mainEntityOfPage":{"@id":"https:\/\/www.skynetindia.info\/blog\/heres-the-laravel-migration-guide-youve-been-looking-for\/#webpage"},"wordCount":982,"publisher":{"@id":"https:\/\/www.skynetindia.info\/blog\/#organization"},"image":{"@id":"https:\/\/www.skynetindia.info\/blog\/heres-the-laravel-migration-guide-youve-been-looking-for\/#primaryimage"},"thumbnailUrl":"https:\/\/www.skynetindia.info\/blog\/wp-content\/uploads\/2021\/07\/laravel-migration.jpg","keywords":["Create Laravel Migration","Laravel Database Migration","laravel maintenance","Laravel Maintenance Mode","Laravel Migration","Laravel Website Upgrades","Migrate Laravel","Migration Database Laravel","Migration Services","Upgrade Laravel","website maintenance","website maintenance service","website maintenance services","Website Migration Services"],"articleSection":["Website Maintenance"],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/www.skynetindia.info\/blog\/#\/schema\/person\/975d7d2ac867146ebdde047dec6e7931","name":"Web Development India"}]}},"_links":{"self":[{"href":"https:\/\/www.skynetindia.info\/blog\/wp-json\/wp\/v2\/posts\/3093"}],"collection":[{"href":"https:\/\/www.skynetindia.info\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.skynetindia.info\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.skynetindia.info\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.skynetindia.info\/blog\/wp-json\/wp\/v2\/comments?post=3093"}],"version-history":[{"count":5,"href":"https:\/\/www.skynetindia.info\/blog\/wp-json\/wp\/v2\/posts\/3093\/revisions"}],"predecessor-version":[{"id":3391,"href":"https:\/\/www.skynetindia.info\/blog\/wp-json\/wp\/v2\/posts\/3093\/revisions\/3391"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.skynetindia.info\/blog\/wp-json\/wp\/v2\/media\/3094"}],"wp:attachment":[{"href":"https:\/\/www.skynetindia.info\/blog\/wp-json\/wp\/v2\/media?parent=3093"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.skynetindia.info\/blog\/wp-json\/wp\/v2\/categories?post=3093"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.skynetindia.info\/blog\/wp-json\/wp\/v2\/tags?post=3093"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}