id(); $table->foreignId('inventory_id')->constrained()->onDelete('cascade'); $table->decimal('cost', 10, 2); $table->decimal('retail_price', 10, 2); $table->decimal('tax', 5, 2); $table->timestamps(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('prices'); } };