id(); $table->integer('productId')->default(0); $table->integer('customerId')->default(0); $table->integer('quantity')->default(0); $table->timestamps(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('carts'); } };