id(); $table->integer('productId')->nullable(); $table->integer('quantity')->nullable(); $table->float('price')->nullable(); $table->integer('orderId')->nullable(); $table->timestamps(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('order_items'); } };