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 { public function up() { Schema::table('users', function(Blueprint $table) { $table->softDeletes(); }); } public function down() { Schema::table('users', function(Blueprint $table) { $table->dropSoftDeletes(); }); }}