From 2245eb49390bbd6a6d3e8477666a5b6bb4746451 Mon Sep 17 00:00:00 2001 From: ale Date: Thu, 15 May 2025 01:16:54 -0300 Subject: [PATCH] Eliminado admin --- app/Admin.php | 10 ------ .../2025_05_15_041404_eliminar_admin.php | 35 +++++++++++++++++++ 2 files changed, 35 insertions(+), 10 deletions(-) delete mode 100644 app/Admin.php create mode 100644 database/migrations/2025_05_15_041404_eliminar_admin.php diff --git a/app/Admin.php b/app/Admin.php deleted file mode 100644 index 9745b32..0000000 --- a/app/Admin.php +++ /dev/null @@ -1,10 +0,0 @@ -id(); + $table->string('nombre'); + $table->foreignId('grupo_de_compra_id'); + $table->string('email'); + $table->string('contrasena'); + $table->timestamps(); + }); + } +}