cambio en columna

This commit is contained in:
Alejandro Tasistro 2024-03-12 22:26:52 -03:00
parent b4c9c5b14e
commit 888a1f4adf
1 changed files with 1 additions and 1 deletions

View File

@ -13,7 +13,7 @@ public function up(): void
{
Schema::create('productos', function (Blueprint $table) {
$table->id();
$table->string('name', 100);
$table->string('name', 200);
$table->double('price', 15, 2);
$table->unsignedBigInteger('categoria_id');
$table->boolean('solidario');