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
1 changed files with 1 additions and 1 deletions
Showing only changes of commit 888a1f4adf - Show all commits

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');