From 034868fadfb1d634fd5f0c8864d2bfc4115b53c1 Mon Sep 17 00:00:00 2001 From: William Allen Date: Thu, 9 Apr 2026 18:14:17 -0400 Subject: [PATCH] Prefix project URLs with https prefix CDash previously performed no validation to ensure that URLs stored in the project table were of the correct form, leading to variety of data cleanliness issues. This attempts to fix the most common case--the missing http(s):// prefix. --- ...04_09_220225_add_project_url_protocols.php | 34 +++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 database/migrations/2026_04_09_220225_add_project_url_protocols.php diff --git a/database/migrations/2026_04_09_220225_add_project_url_protocols.php b/database/migrations/2026_04_09_220225_add_project_url_protocols.php new file mode 100644 index 0000000000..cf72ffcee7 --- /dev/null +++ b/database/migrations/2026_04_09_220225_add_project_url_protocols.php @@ -0,0 +1,34 @@ + 0 + "); + } + } + + public function down(): void + { + } +};