id(); $table->string('filename'); $table->dateTime('created_at'); $table->dateTime('updated_at'); $table->unique('filename'); }); } /** * Reverse the migrations. * * @return void */ public function down(): void { Schema::drop('images'); } }