Fila nullable

This commit is contained in:
Alejandro Tasistro 2025-05-23 16:53:54 -03:00
parent d794dbd2b0
commit 37fd0fb4d3
4 changed files with 610 additions and 233 deletions

View file

@ -101,7 +101,6 @@ class CanastaHelper
});
Producto::create([
'fila' => 420,
'nombre' => "Bono barrial",
'precio' => 20,
'categoria' => $categoria,

View file

@ -9,6 +9,7 @@
"license": "MIT",
"require": {
"php": "^7.4",
"doctrine/dbal": "^2.2.0",
"fideloper/proxy": "^4.4",
"fruitcake/laravel-cors": "^2.0",
"guzzlehttp/guzzle": "^6.3.1|^7.0.1",

809
composer.lock generated

File diff suppressed because it is too large Load diff

View file

@ -0,0 +1,32 @@
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
class HacerFilaNullable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::table('productos', function (Blueprint $table) {
$table->integer('fila')->nullable()->change();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::table('productos', function (Blueprint $table) {
$table->integer('fila')->nullable(false)->change();
});
}
}