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