id(); $table->string('key', 50)->unique()->comment('配置key'); $table->string('name')->default('')->comment('配置名称'); $table->text('value')->comment('配置值'); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('filesystem_configs'); } }