From 01d5abdd998c3e170e0010ff103f80c666ef2615 Mon Sep 17 00:00:00 2001 From: ale Date: Tue, 5 Nov 2024 10:45:50 -0300 Subject: [PATCH] =?UTF-8?q?Arreglado=20error=20en=20migraci=C3=B3n?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../migrations/2024_08_28_000025_agregar_is_compras_a_user.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/database/migrations/2024_08_28_000025_agregar_is_compras_a_user.php b/database/migrations/2024_08_28_000025_agregar_is_compras_a_user.php index 57d12ac..715646f 100644 --- a/database/migrations/2024_08_28_000025_agregar_is_compras_a_user.php +++ b/database/migrations/2024_08_28_000025_agregar_is_compras_a_user.php @@ -25,7 +25,7 @@ class AgregarIsComprasAUser extends Migration */ public function down() { - Schema::table('producto_subpedido', function (Blueprint $table) { + Schema::table('users', function (Blueprint $table) { $table->dropColumn('is_compras'); }); }