diff --git a/database/migrations/2024_04_21_162544_create_webhook_configurations_table.php b/database/migrations/2024_04_21_162544_create_webhook_configurations_table.php index 5a1a328bc6..c39805f081 100644 --- a/database/migrations/2024_04_21_162544_create_webhook_configurations_table.php +++ b/database/migrations/2024_04_21_162544_create_webhook_configurations_table.php @@ -15,7 +15,7 @@ public function up(): void $table->id(); $table->string('endpoint'); $table->string('description'); - $table->json('events')->index(); + $table->json('events'); $table->timestamps(); }); }