uuid('id')->primary(); $table->string('key'); $table->text('value'); $table->string('type'); $table->softDeletes(); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('settings'); } };