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