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'); } };