45 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			PHP
		
	
	
	
			
		
		
	
	
			45 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			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->increments('id');
 | 
						|
            $table->string('name', 150);
 | 
						|
            $table->boolean('active');
 | 
						|
            $table->string('endpoint', 500);
 | 
						|
            $table->timestamps();
 | 
						|
 | 
						|
            $table->index('name');
 | 
						|
            $table->index('active');
 | 
						|
        });
 | 
						|
 | 
						|
        Schema::create('webhook_tracked_events', function (Blueprint $table) {
 | 
						|
            $table->increments('id');
 | 
						|
            $table->integer('webhook_id');
 | 
						|
            $table->string('event', 50);
 | 
						|
            $table->timestamps();
 | 
						|
 | 
						|
            $table->index('event');
 | 
						|
            $table->index('webhook_id');
 | 
						|
        });
 | 
						|
    }
 | 
						|
 | 
						|
    /**
 | 
						|
     * Reverse the migrations.
 | 
						|
     */
 | 
						|
    public function down(): void
 | 
						|
    {
 | 
						|
        Schema::dropIfExists('webhooks');
 | 
						|
        Schema::dropIfExists('webhook_tracked_events');
 | 
						|
    }
 | 
						|
};
 |