| 123456789101112131415161718192021222324252627282930313233343536373839404142 | <?phpuse Illuminate\Support\Facades\Schema;use Illuminate\Database\Schema\Blueprint;use Illuminate\Database\Migrations\Migration;/** * Migration auto-generated by Sequel Pro Laravel Export * @see https://github.com/cviebrock/sequel-pro-laravel-export */class CreateAdminRolesTable extends Migration{    /**     * Run the migrations.     *     * @return void     */    public function up()    {        Schema::create('admin_roles', function (Blueprint $table) {            $table->increments('id');            $table->string('name', 200)->comment('角色名称')->nullable();            $table->integer('status')->default(1)->comment('是否禁用')->nullable();            $table->string('info', 200)->comment('备注')->nullable();            $table->timestamps();            $table->softDeletes();            $table->index('deleted_at', 'idx_deleted_at');        });    }    /**     * Reverse the migrations.     *     * @return void     */    public function down()    {        Schema::dropIfExists('admin_roles');    }}
 |