increments('id'); $table->string('sn', 32)->default('')->comment('编号'); $table->softDeletes(); $table->unique(['sn', 'deleted_at']); $table->comment('测试'); $table->setIncrement(100); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('tests'); } }