id(); $table->foreignIdFor(\App\Models\WebhookConfiguration::class)->constrained(); $table->string('event'); $table->string('endpoint'); $table->timestamp('successful_at')->nullable(); $table->json('payload'); $table->timestamps(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('webhooks'); } };