diff --git a/database/migrations/2024_03_11_224041_create_productos_table.php b/database/migrations/2024_03_11_224041_create_productos_table.php index 9449563..139a9a6 100644 --- a/database/migrations/2024_03_11_224041_create_productos_table.php +++ b/database/migrations/2024_03_11_224041_create_productos_table.php @@ -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');