increments('id'); $table->string('name')->comment('名字'); $table->string('key')->comment('标示'); $table->mediumText('value')->comment('值')->nullable(); $table->timestamps(); $table->softDeletes(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('configs'); } }