id(); $table->foreignIdFor(User::class); $table->foreignIdFor(Deal::class); $table->enum('type', InteractionType::values()); $table->timestamp('created_at')->useCurrent(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('interactions'); } };