id(); $table->unsignedBigInteger('user_id'); $table->enum('module', ['New User', 'New Appointment']); $table->enum('method', ['GET', 'POST']); $table->string('url'); $table->timestamps(); $table->foreign('user_id')->references('id')->on('users')->onDelete('cascade'); }); } public function down(): void { Schema::dropIfExists('webhooks'); } };