diff --git a/migrations/2024_12_30_increase_webhook_url_length.php b/migrations/2024_12_30_increase_webhook_url_length.php new file mode 100644 index 0000000..3cd8238 --- /dev/null +++ b/migrations/2024_12_30_increase_webhook_url_length.php @@ -0,0 +1,24 @@ + function (Builder $schema) { + $schema->table('webhooks', function (Blueprint $table) { + $table->string('url', 511)->change(); + }); + }, + 'down' => function (Builder $schema) { + // no need to revert this change + }, +];