From 0c5a69e8c166ea752b062d56d28be9b7e4050dd6 Mon Sep 17 00:00:00 2001 From: Carl Kittelberger Date: Fri, 20 Jun 2025 18:42:08 +0200 Subject: [PATCH] fix(#49): allow long polling URL for plugins --- ...25_06_20_163742_allow_long_polling_url.php | 29 +++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 database/migrations/2025_06_20_163742_allow_long_polling_url.php diff --git a/database/migrations/2025_06_20_163742_allow_long_polling_url.php b/database/migrations/2025_06_20_163742_allow_long_polling_url.php new file mode 100644 index 0000000..b29eebc --- /dev/null +++ b/database/migrations/2025_06_20_163742_allow_long_polling_url.php @@ -0,0 +1,29 @@ +string('polling_url', 1024)->nullable()->change(); + }); + } + + /** + * Reverse the migrations. + */ + public function down(): void + { + Schema::table("plugins", function (Blueprint $table) { + // old default string length value in Illuminate + $table->string('polling_url', 255)->nullable()->change(); + }); + } +};