From 0c317db536ddbd3bfd853ea30936a65c18aff65f Mon Sep 17 00:00:00 2001 From: Andras Bacsai <5845193+andrasbacsai@users.noreply.github.com> Date: Wed, 19 Nov 2025 13:31:14 +0100 Subject: [PATCH] chore: remove accidentally committed github runner migration MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Remove the github_runner_sources migration that was accidentally included in the health check status fix branch. This migration is unrelated to the health check functionality and should be developed separately. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- ...504_create_github_runner_sources_table.php | 27 ------------------- 1 file changed, 27 deletions(-) delete mode 100644 database/migrations/2025_11_19_115504_create_github_runner_sources_table.php diff --git a/database/migrations/2025_11_19_115504_create_github_runner_sources_table.php b/database/migrations/2025_11_19_115504_create_github_runner_sources_table.php deleted file mode 100644 index 02ae2b77f..000000000 --- a/database/migrations/2025_11_19_115504_create_github_runner_sources_table.php +++ /dev/null @@ -1,27 +0,0 @@ -id(); - $table->timestamps(); - }); - } - - /** - * Reverse the migrations. - */ - public function down(): void - { - Schema::dropIfExists('github_runner_sources'); - } -};