From 5a61ca46c598ea2262b5e49e02116e67f422b890 Mon Sep 17 00:00:00 2001 From: ale Date: Fri, 23 May 2025 18:27:33 -0300 Subject: [PATCH] Quitado password de grupo de compra --- ...603_quitar_password_de_grupo_de_compra.php | 32 +++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 database/migrations/2025_05_23_212603_quitar_password_de_grupo_de_compra.php diff --git a/database/migrations/2025_05_23_212603_quitar_password_de_grupo_de_compra.php b/database/migrations/2025_05_23_212603_quitar_password_de_grupo_de_compra.php new file mode 100644 index 0000000..a6820c5 --- /dev/null +++ b/database/migrations/2025_05_23_212603_quitar_password_de_grupo_de_compra.php @@ -0,0 +1,32 @@ +dropColumn('password'); + }); + } + + /** + * Reverse the migrations. + * + * @return void + */ + public function down() + { + Schema::table('grupos_de_compra', function (Blueprint $table) { + $table->string('password')->nullable(); + }); + } +}