id(); $table->string('key', 50)->unique()->comment('key'); $table->text('value')->nullable()->comment('值'); $table->string('remarks')->nullable()->comment('备注'); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('settings'); } }