timestams innecesarias

This commit is contained in:
Alejandro Tasistro 2024-03-12 23:55:46 -03:00
parent f8239a624d
commit 5ea06ff003
1 changed files with 0 additions and 1 deletions

View File

@ -14,7 +14,6 @@ public function up(): void
Schema::create('productos_caracteristicas', function (Blueprint $table) {
$table->unsignedBigInteger('producto_id');
$table->unsignedBigInteger('caracteristica_id');
$table->timestamps();
$table->primary(['producto_id','caracteristica_id']);
$table->foreign('producto_id')->references('id')->on('productos');
$table->foreign('caracteristica_id')->references('id')->on('caracteristicas');