2021-12-07 15:55:11 +01:00
|
|
|
<?php
|
|
|
|
|
|
|
|
use Illuminate\Database\Migrations\Migration;
|
|
|
|
use Illuminate\Database\Schema\Blueprint;
|
|
|
|
use Illuminate\Support\Facades\Schema;
|
|
|
|
|
2023-02-06 17:58:29 +01:00
|
|
|
return new class extends Migration
|
2021-12-07 15:55:11 +01:00
|
|
|
{
|
|
|
|
/**
|
|
|
|
* Run the migrations.
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
public function up()
|
|
|
|
{
|
|
|
|
Schema::create('webhooks', function (Blueprint $table) {
|
|
|
|
$table->increments('id');
|
|
|
|
$table->string('name', 150);
|
2021-12-12 18:39:06 +01:00
|
|
|
$table->boolean('active');
|
2021-12-07 15:55:11 +01:00
|
|
|
$table->string('endpoint', 500);
|
|
|
|
$table->timestamps();
|
2021-12-08 18:35:58 +01:00
|
|
|
|
|
|
|
$table->index('name');
|
2021-12-12 18:39:06 +01:00
|
|
|
$table->index('active');
|
2021-12-08 18:35:58 +01:00
|
|
|
});
|
|
|
|
|
|
|
|
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');
|
2021-12-07 15:55:11 +01:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Reverse the migrations.
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
public function down()
|
|
|
|
{
|
|
|
|
Schema::dropIfExists('webhooks');
|
2021-12-10 15:58:14 +01:00
|
|
|
Schema::dropIfExists('webhook_tracked_events');
|
2021-12-07 15:55:11 +01:00
|
|
|
}
|
2023-02-06 17:58:29 +01:00
|
|
|
};
|