feature/modelos-y-migraciones #3

Merged
rho merged 28 commits from feature/modelos-y-migraciones into master 2024-03-14 16:34:44 -03:00
Showing only changes of commit 888a1f4adf - Show all commits

View file

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