欢迎各位兄弟 发布技术文章

这里的技术是共享的

You are here

增加软删除 删除软删除 有大用


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();        });    } }

普通分类: