nimuli/database/migrations/2026_05_15_300080_create_we...

28 lines
737 B
PHP

<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
return new class extends Migration
{
public function up(): void
{
Schema::create('webhooks', function (Blueprint $table) {
$table->id();
$table->foreignId('workspace_id')->constrained()->cascadeOnDelete();
$table->string('url');
$table->string('secret', 64);
$table->json('events');
$table->boolean('is_active')->default(true);
$table->timestamps();
$table->index('workspace_id');
});
}
public function down(): void
{
Schema::dropIfExists('webhooks');
}
};