rodar migration laravel code example

Example 1: php artisan make migration

php artisan make:migration create_users_table

Example 2: laravel migration table softdeletes

use Illuminate\Database\Schema\Blueprint;use Illuminate\Database\Migrations\Migration;class AddSoftDeletesToUserTable extends Migration {/**  * Run the migrations.  *  * @return void  */ public function up() {    Schema::table('users', function(Blueprint $table)    {       $table->softDeletes();    }); }/**  * Reverse the migrations.  *  * @return void  */ public function down() {  Schema::table('users', function(Blueprint $table)  {       $table->dropSoftDeletes();  }); }}

Tags:

Php Example