This commit is contained in:
lizandrogd
2026-01-21 09:34:34 -05:00
parent 3709078404
commit 39e62d67f0
3 changed files with 40 additions and 1 deletions
@@ -0,0 +1,30 @@
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
return new class extends Migration
{
/**
* Run the migrations.
*
* NOTE: Changing column attributes requires the "doctrine/dbal" package.
*/
public function up(): void
{
Schema::table('productos', function (Blueprint $table) {
$table->string('imagen')->nullable()->default('')->change();
});
}
/**
* Reverse the migrations.
*/
public function down(): void
{
Schema::table('productos', function (Blueprint $table) {
$table->string('imagen')->nullable(false)->default(null)->change();
});
}
};