Create 2026_01_20_050000_make_referencia_nullable_on_orden_produccions.php

This commit is contained in:
lizandrogd
2026-01-19 21:42:26 -05:00
parent edf096abe5
commit cfd76e7fec
@@ -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) {
// Hacer nullable la columna referencia para que no sea obligatorio en formularios
$table->string('referencia')->nullable()->change();
});
}
public function down(): void
{
Schema::table('orden_produccions', function (Blueprint $table) {
$table->string('referencia')->nullable(false)->change();
});
}
};