From 99be8e706e4be13aad6c7c38b44bf7d0352154a8 Mon Sep 17 00:00:00 2001 From: michalsn Date: Thu, 11 Dec 2025 21:20:39 +0100 Subject: [PATCH] fix: tests with migrations_lock --- .../Database/Migrations/20160428212500_Create_test_tables.php | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/_support/Database/Migrations/20160428212500_Create_test_tables.php b/tests/_support/Database/Migrations/20160428212500_Create_test_tables.php index 6af55fa7c9c9..74fb2aa072f3 100644 --- a/tests/_support/Database/Migrations/20160428212500_Create_test_tables.php +++ b/tests/_support/Database/Migrations/20160428212500_Create_test_tables.php @@ -189,6 +189,7 @@ public function down(): void $this->forge->dropTable('stringifypkey', true); $this->forge->dropTable('without_auto_increment', true); $this->forge->dropTable('ip_table', true); + $this->forge->dropTable('migrations_lock', true); if (in_array($this->db->DBDriver, ['MySQLi', 'Postgre'], true)) { $this->forge->dropTable('ci_sessions', true);