id(); $table->foreignId('machine_id')->constrained('cmms_machines')->noActionOnDelete(); $table->morphs('machinable'); $table->timestamps(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('machinables'); } };