comment('系统设置'); $table->increments('id'); $table->string('key')->default('')->comment('配置项'); $table->json('value')->comment('配置值'); $table->timestamps(); $table->softDeletes(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('sys_config'); } };