string('url'); $table->string('title'); $table->string('description'); $table->string('image'); $table->timestamps(); $table->index('url'); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('metadata'); } }