This commit is contained in:
Lizandro Guarnizo
2026-01-28 14:47:43 -05:00
parent 39e62d67f0
commit 2eef39c2ea
4 changed files with 58 additions and 5 deletions
@@ -0,0 +1,33 @@
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
return new class extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::table('orden_produccions', function (Blueprint $table) {
// Store image paths as JSON array
$table->json('imagenes')->nullable()->after('tela_reservada');
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::table('orden_produccions', function (Blueprint $table) {
$table->dropColumn('imagenes');
});
}
};