Arreglado error en migración

This commit is contained in:
Alejandro Tasistro 2024-11-05 10:45:50 -03:00
parent c53e342f54
commit 01d5abdd99
1 changed files with 1 additions and 1 deletions

View File

@ -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');
});
}