欢迎各位兄弟 发布技术文章
这里的技术是共享的
php artisan make:migration addSoftDeleteToUsersTable --table=users
<?php use Illuminate\Database\Schema\Blueprint; use Illuminate\Database\Migrations\Migration; class AddSoftdeleteToUsersTable 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(); }); } }