From 5ea06ff003dfafab704552947817d697aa118906 Mon Sep 17 00:00:00 2001 From: ale Date: Tue, 12 Mar 2024 23:55:46 -0300 Subject: [PATCH] timestams innecesarias --- .../2024_03_12_201211_create_productos_caracteristicas_table.php | 1 - 1 file changed, 1 deletion(-) diff --git a/database/migrations/2024_03_12_201211_create_productos_caracteristicas_table.php b/database/migrations/2024_03_12_201211_create_productos_caracteristicas_table.php index d07eb3f..e3c71ba 100644 --- a/database/migrations/2024_03_12_201211_create_productos_caracteristicas_table.php +++ b/database/migrations/2024_03_12_201211_create_productos_caracteristicas_table.php @@ -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');