Files
panel-pelican-dev/database/migrations/2024_04_21_162552_create_webhooks_table.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');
}
};