This commit is contained in:
Lizandro Guarnizo
2026-01-18 13:04:24 -05:00
parent 7f97757038
commit c358774862
6 changed files with 110 additions and 1 deletions
@@ -0,0 +1,23 @@
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
return new class extends Migration
{
public function up(): void
{
Schema::table('inventario_prendas', function (Blueprint $table) {
$table->foreignId('producto_id')->nullable()->constrained('productos')->nullOnDelete()->after('orden_produccion_id');
});
}
public function down(): void
{
Schema::table('inventario_prendas', function (Blueprint $table) {
$table->dropForeign(['producto_id']);
$table->dropColumn('producto_id');
});
}
};
@@ -0,0 +1,23 @@
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
return new class extends Migration
{
public function up(): void
{
Schema::table('orden_produccions', function (Blueprint $table) {
$table->foreignId('producto_id')->nullable()->constrained('productos')->nullOnDelete()->after('tela_id');
});
}
public function down(): void
{
Schema::table('orden_produccions', function (Blueprint $table) {
$table->dropForeign(['producto_id']);
$table->dropColumn('producto_id');
});
}
};