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