id(); $table->string('key'); $table->timestamp('value', 0)->nullable()->index(); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('key_values'); } }