id(); $table->string('matricula')->unique(); $table->string('marca'); $table->string('modelo'); $table->year('año'); $table->timestamps(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('taxis'); } };