feat: implement multi-tenant cart system with stock reservation and inventory tracking

This commit is contained in:
2026-07-01 16:21:53 -03:00
parent 230ea57ce0
commit 6a0b08c9d7
8 changed files with 144 additions and 18 deletions

View File

@@ -0,0 +1,36 @@
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
return new class extends Migration
{
/**
* Run the migrations.
*/
public function up(): void
{
Schema::table('productos_variantes', function (Blueprint $table) {
$table->renameColumn('stock', 'stock_real');
});
Schema::table('productos_variantes', function (Blueprint $table) {
$table->unsignedInteger('stock_reservado')->default(0)->after('stock_real');
});
}
/**
* Reverse the migrations.
*/
public function down(): void
{
Schema::table('productos_variantes', function (Blueprint $table) {
$table->dropColumn('stock_reservado');
});
Schema::table('productos_variantes', function (Blueprint $table) {
$table->renameColumn('stock_real', 'stock');
});
}
};