How to add column in a table using laravel 5 migration without losing its data? How to add column in a table using laravel 5 migration without losing its data? postgresql postgresql

How to add column in a table using laravel 5 migration without losing its data?


Use below command to modify the existing table

php artisan make:migration add_shipped_via_and_terms_colums_to_purchase_orders_table --table=purchase_orders

use --create for creating the new table and --table for modifying the existing table.

Now a new migration file will be created. Inside the up() function in this file add these line

Schema::table('purchase_orders', function(Blueprint $table){    $table->string('shipped_via');    $table->string('terms');});

And then run php artisan migrate


Laravel has a table in your database where it keeps track of all the migrations that are already executed. So by only changing the migration file Laravel will not automatically rerun that migration for you. Cause the migration is already executed by Laravel.

So the best thing to do is to just create a new migration and put the piece of code in it you already have (you were on the right track!).

public function up(){    //    Schema::table('purchase_orders', function(Blueprint $table){        $table->string('shipped_via');        $table->string('terms');    });}/** * Reverse the migrations. * * @return void */public function down(){    //}

You don't need to populate the down function case the table will be dropped by your current purchase_orders migration.

To migrate the new migration just run:

php artisan migrate