increments('id'); $table->string('key', 200)->nullable()->comment('键'); $table->string('key_show', 200)->nullable()->comment('键显示'); $table->string('value', 200)->nullable()->comment('值'); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('settings'); } }