35 lines
872 B
PHP
35 lines
872 B
PHP
<?php
|
|
|
|
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->string('name');
|
|
$table->string('url');
|
|
$table->json('events');
|
|
$table->string('secret', 64);
|
|
$table->boolean('is_active')->default(true);
|
|
$table->timestamp('last_triggered_at')->nullable();
|
|
$table->unsignedSmallInteger('last_status')->nullable();
|
|
$table->timestamps();
|
|
});
|
|
}
|
|
|
|
/**
|
|
* Reverse the migrations.
|
|
*/
|
|
public function down(): void
|
|
{
|
|
Schema::dropIfExists('webhooks');
|
|
}
|
|
};
|