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(); + }); + } +}