diff --git a/database/migrations/2026_01_01_000000_create_webhook_entries_table.php b/database/migrations/2026_01_01_000000_create_webhook_entries_table.php new file mode 100644 index 0000000..63471d3 --- /dev/null +++ b/database/migrations/2026_01_01_000000_create_webhook_entries_table.php @@ -0,0 +1,24 @@ +id(); + $table->string('source')->default('verify'); + $table->json('payload')->nullable(); + $table->json('headers')->nullable(); + $table->timestamps(); + }); + } + + public function down(): void + { + Schema::dropIfExists('webhook_entries'); + } +}; \ No newline at end of file