id(); $table->foreignId('adjustment_id')->constrained()->cascadeOnDelete(); $table->string('adjustment_type'); $table->morphs('adjustmentable'); $table->timestamps(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('adjustmentables'); } };