id(); $table->string('name')->index()->comment('设置名称'); $table->string('value')->comment('设置值')->nullable(); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('settings'); } };