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