id(); $table->string('slug')->unique()->comment('插件标识'); $table->boolean('show')->comment('是否首页显示')->nullable(); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('plugins'); } };