mirror of
https://github.com/pelican-dev/panel.git
synced 2026-07-15 19:53:59 +03:00
34 lines
822 B
PHP
34 lines
822 B
PHP
<?php
|
|
|
|
use App\Models\WebhookConfiguration;
|
|
use Illuminate\Database\Migrations\Migration;
|
|
use Illuminate\Database\Schema\Blueprint;
|
|
use Illuminate\Support\Facades\Schema;
|
|
|
|
return new class extends Migration
|
|
{
|
|
/**
|
|
* Run the migrations.
|
|
*/
|
|
public function up(): void
|
|
{
|
|
Schema::create('webhooks', function (Blueprint $table) {
|
|
$table->id();
|
|
$table->foreignIdFor(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');
|
|
}
|
|
};
|